##// END OF EJS Templates
Stopped raising error when username is specified both in ~/.hgrc and...
Marcin Kasperski -
r59:abed620e default
parent child Browse files
Show More
@@ -132,7 +132,7 b' class HTTPPasswordHandler(object):'
132 132 return user, pwd
133 133
134 134 if auth_user:
135 if user:
135 if user and (user != auth_user):
136 136 raise util.Abort(_('mercurial_keyring: username for %s specified both in repository path (%s) and in .hg/hgrc/[auth] (%s). Please, leave only one of those' % (base_url, user, auth_user)))
137 137 user = auth_user
138 138 if pwd:
General Comments 0
You need to be logged in to leave comments. Login now