# HG changeset patch # User Elliott Peele # Date 1193788465 25200 # Node ID 81bef3c355c55b6ac5945c99f81fbd33ea1f61e6 # Parent f7c99e89178f8cc45ef79b9301aaeba46b984e0f https url handling: usernames and passwords were registered to the wrong url diff -r f7c99e89178f -r 81bef3c355c5 mercurial/httprepo.py --- a/mercurial/httprepo.py Sun Oct 28 09:25:35 2007 +0100 +++ b/mercurial/httprepo.py Tue Oct 30 16:54:25 2007 -0700 @@ -256,7 +256,7 @@ if user: ui.debug(_('http auth: user %s, password %s\n') % (user, passwd and '*' * len(passwd) or 'not set')) - passmgr.add_password(None, self._url, user, passwd or '') + passmgr.add_password(None, host, user, passwd or '') handlers.extend((urllib2.HTTPBasicAuthHandler(passmgr), httpdigestauthhandler(passmgr)))