diff options
-rw-r--r-- | sleekxmpp/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/__init__.py b/sleekxmpp/__init__.py index f967d0ba..061f68c1 100644 --- a/sleekxmpp/__init__.py +++ b/sleekxmpp/__init__.py @@ -248,7 +248,7 @@ class ClientXMPP(basexmpp, XMLStream): if self.digest_auth_started == False: challenge = [item.split('=', 1) for item in base64.b64decode(xml.text).replace("\"", "").split(',', 6) ] challenge = dict(challenge) - logging.debug("MD5 auth challenge: %s", challenge) + logging.debug("MD5 auth challenge: %s", challenge) #Realm, nonce, qop should all be present if not challenge['realm'] or not challenge['qop'] or not challenge['nonce']: |