diff options
author | Lance Stout <lancestout@gmail.com> | 2013-01-02 12:57:02 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-01-02 12:57:02 -0800 |
commit | 0e2abe74d5d978ee701576d6e00eb35919dffb70 (patch) | |
tree | b06ebbafcc5f96add3d01940016345ed0df34ad8 | |
parent | 0998429b07cfc23564847237b5873819a65e531c (diff) | |
parent | fea444925e3dbb6a3933637e2011795aa0f49810 (diff) | |
download | slixmpp-0e2abe74d5d978ee701576d6e00eb35919dffb70.tar.gz slixmpp-0e2abe74d5d978ee701576d6e00eb35919dffb70.tar.bz2 slixmpp-0e2abe74d5d978ee701576d6e00eb35919dffb70.tar.xz slixmpp-0e2abe74d5d978ee701576d6e00eb35919dffb70.zip |
Merge pull request #215 from oswjk/patch-1
util/sasl/mechanisms.py: SASLMutualAuthFailed not defined
-rw-r--r-- | sleekxmpp/util/sasl/mechanisms.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sleekxmpp/util/sasl/mechanisms.py b/sleekxmpp/util/sasl/mechanisms.py index 80cb7219..e137e263 100644 --- a/sleekxmpp/util/sasl/mechanisms.py +++ b/sleekxmpp/util/sasl/mechanisms.py @@ -21,7 +21,8 @@ from base64 import b64encode, b64decode from sleekxmpp.util import bytes, hash, XOR, quote, num_to_bytes from sleekxmpp.util.sasl.client import sasl_mech, Mech, \ - SASLCancelled, SASLFailed + SASLCancelled, SASLFailed, \ + SASLMutualAuthFailed @sasl_mech(0) |