##// END OF EJS Templates
Fixes in debug message
Marcin Kasperski -
r88:eff81be3 default
parent child Browse files
Show More
@@ -114,7 +114,8 b' class HTTPPasswordHandler(object):'
114 after_bad_auth = (self.last_reply \
114 after_bad_auth = (self.last_reply \
115 and (self.last_reply['realm'] == realm) \
115 and (self.last_reply['realm'] == realm) \
116 and (self.last_reply['authuri'] == authuri))
116 and (self.last_reply['authuri'] == authuri))
117 _debug(ui, _("Working after bad authentication, cached passwords not used"))
117 if after_bad_auth:
118 _debug(ui, _("Working after bad authentication, cached passwords not used %s") % str(self.last_reply))
118
119
119 # Strip arguments to get actual remote repository url.
120 # Strip arguments to get actual remote repository url.
120 base_url = self.canonical_url(authuri)
121 base_url = self.canonical_url(authuri)
General Comments 0
You need to be logged in to leave comments. Login now