##// END OF EJS Templates
httprepo: fix small bug in authentication.
Vadim Gelfer -
r2446:1b2bbb2b default
parent child Browse files
Show More
@@ -23,7 +23,7 b' class passwordmgr(urllib2.HTTPPasswordMg'
23 if authinfo != (None, None):
23 if authinfo != (None, None):
24 return authinfo
24 return authinfo
25
25
26 if not ui.interactive:
26 if not self.ui.interactive:
27 raise util.Abort(_('http authorization required'))
27 raise util.Abort(_('http authorization required'))
28
28
29 self.ui.write(_("http authorization required\n"))
29 self.ui.write(_("http authorization required\n"))
General Comments 0
You need to be logged in to leave comments. Login now