##// END OF EJS Templates
url: fix bug in passwordmgr related to auth configuration...
Sune Foldager -
r8344:87342991 default
parent child Browse files
Show More
@@ -108,7 +108,8 b' class passwordmgr(urllib2.HTTPPasswordMg'
108 self._writedebug(user, passwd)
108 self._writedebug(user, passwd)
109 return (user, passwd)
109 return (user, passwd)
110
110
111 user, passwd = self._readauthtoken(authuri)
111 if not user:
112 user, passwd = self._readauthtoken(authuri)
112 if not user or not passwd:
113 if not user or not passwd:
113 if not self.ui.interactive():
114 if not self.ui.interactive():
114 raise util.Abort(_('http authorization required'))
115 raise util.Abort(_('http authorization required'))
General Comments 0
You need to be logged in to leave comments. Login now