##// END OF EJS Templates
Some debugging
Marcin Kasperski -
r78:06e30fe1 default
parent child Browse files
Show More
@@ -125,7 +125,7 b' class HTTPPasswordHandler(object):'
125 keyring_url = prefix_url
125 keyring_url = prefix_url
126 else:
126 else:
127 keyring_url = base_url
127 keyring_url = base_url
128 ui.debug("keyring URL: %s\n" % keyring_url)
128 ui.debug("Keyring URL: %s\n" % keyring_url)
129
129
130 # Checking the memory cache (there may be many http calls per command)
130 # Checking the memory cache (there may be many http calls per command)
131 cache_key = (realm, keyring_url)
131 cache_key = (realm, keyring_url)
@@ -162,6 +162,8 b' class HTTPPasswordHandler(object):'
162 base_url, user, pwd)
162 base_url, user, pwd)
163 self.last_reply = dict(realm=realm,authuri=authuri,user=user)
163 self.last_reply = dict(realm=realm,authuri=authuri,user=user)
164 return user, pwd
164 return user, pwd
165 else:
166 ui.debug(_("Password not present in the keyring\n"))
165
167
166 # Is the username permanently set?
168 # Is the username permanently set?
167 fixed_user = (user and True or False)
169 fixed_user = (user and True or False)
General Comments 0
You need to be logged in to leave comments. Login now