# HG changeset patch # User Marcin Kasperski # Date 2011-07-23 22:08:00 # Node ID 06e30fe19b6b1460dcf84a9fa8de7197b0b9ea6c # Parent 476937ac8644dea1b255697c0a641df00291afc6 Some debugging diff --git a/mercurial_keyring.py b/mercurial_keyring.py --- a/mercurial_keyring.py +++ b/mercurial_keyring.py @@ -125,7 +125,7 @@ class HTTPPasswordHandler(object): keyring_url = prefix_url else: keyring_url = base_url - ui.debug("keyring URL: %s\n" % keyring_url) + ui.debug("Keyring URL: %s\n" % keyring_url) # Checking the memory cache (there may be many http calls per command) cache_key = (realm, keyring_url) @@ -162,6 +162,8 @@ class HTTPPasswordHandler(object): base_url, user, pwd) self.last_reply = dict(realm=realm,authuri=authuri,user=user) return user, pwd + else: + ui.debug(_("Password not present in the keyring\n")) # Is the username permanently set? fixed_user = (user and True or False)