diff options
author | Brian Beggs <macdiesel@gmail.com> | 2010-06-30 14:48:45 -0400 |
---|---|---|
committer | Brian Beggs <macdiesel@gmail.com> | 2010-06-30 14:48:45 -0400 |
commit | 488d5b29d44fa0bc1597f75d3a5b000fe1970db9 (patch) | |
tree | 7af6633605feef51b0edcee3518d3e09921a119c | |
parent | 9bdb297fe27c8f00d81fb6e924abc71ec0282b95 (diff) | |
download | slixmpp-488d5b29d44fa0bc1597f75d3a5b000fe1970db9.tar.gz slixmpp-488d5b29d44fa0bc1597f75d3a5b000fe1970db9.tar.bz2 slixmpp-488d5b29d44fa0bc1597f75d3a5b000fe1970db9.tar.xz slixmpp-488d5b29d44fa0bc1597f75d3a5b000fe1970db9.zip |
fixed typo
-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 9185c175..2bc59444 100644 --- a/sleekxmpp/__init__.py +++ b/sleekxmpp/__init__.py @@ -264,7 +264,7 @@ class ClientXMPP(basexmpp, XMLStream): response = '''charset=utf-8,username="%s",realm="%s",nonce="%s",nc=00000001,cnonce="%s",digest-uri="%s",response=%s,qop=%s,''' %(self.username, self.domain, challenge["nonce"], cnonce, "xmpp/%s" % self.domain, responseHash, challenge["qop"]) self.sendPriorityRaw("""<response xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>%s</response>""" %base64.encodestring(response)[:-1]) else: - logging.warn("handler_sasl_digest_md5_auth called while digest_auth_started is false") + logging.warn("handler_sasl_digest_md5_auth called while digest_auth_started is True (has already begun)") def handler_sasl_digest_md5_auth_fail(self, xml): self.digest_auth_started = False |