##// END OF EJS Templates
url: convert some variables back to bytes...
Augie Fackler -
r41493:d437d1e2 default
parent child Browse files
Show More
@@ -62,6 +62,7 b' class passwordmgr(object):'
62 assert isinstance(authuri, str)
62 assert isinstance(authuri, str)
63 authinfo = self.passwddb.find_user_password(realm, authuri)
63 authinfo = self.passwddb.find_user_password(realm, authuri)
64 user, passwd = authinfo
64 user, passwd = authinfo
65 user, passwd = pycompat.bytesurl(user), pycompat.bytesurl(passwd)
65 if user and passwd:
66 if user and passwd:
66 self._writedebug(user, passwd)
67 self._writedebug(user, passwd)
67 return (user, passwd)
68 return (user, passwd)
General Comments 0
You need to be logged in to leave comments. Login now