diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-05 14:06:58 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-05 14:06:58 -0700 |
commit | 148a23579c199d218325c88d7b6f567f42c7a36a (patch) | |
tree | 82c9d0b3d4b54ad5e5016a954bc35b4d2c72ec9f /sleekxmpp/thirdparty/suelta/mechanisms/anonymous.py | |
parent | 168203c94def5b4f88345e2564ecb0b973e8fc3f (diff) | |
download | slixmpp-148a23579c199d218325c88d7b6f567f42c7a36a.tar.gz slixmpp-148a23579c199d218325c88d7b6f567f42c7a36a.tar.bz2 slixmpp-148a23579c199d218325c88d7b6f567f42c7a36a.tar.xz slixmpp-148a23579c199d218325c88d7b6f567f42c7a36a.zip |
Hotfix for ANONYMOUS mech support.sleek-1.0-Beta6.11.0-Beta6.1
Updates version to 1.0-Beta6.1
Diffstat (limited to 'sleekxmpp/thirdparty/suelta/mechanisms/anonymous.py')
-rw-r--r-- | sleekxmpp/thirdparty/suelta/mechanisms/anonymous.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/thirdparty/suelta/mechanisms/anonymous.py b/sleekxmpp/thirdparty/suelta/mechanisms/anonymous.py index de89eef2..e44e91a2 100644 --- a/sleekxmpp/thirdparty/suelta/mechanisms/anonymous.py +++ b/sleekxmpp/thirdparty/suelta/mechanisms/anonymous.py @@ -10,7 +10,7 @@ class ANONYMOUS(Mechanism): def __init__(self, sasl, name): """ """ - super(ANONYMOUS, self).__init__(self, sasl, name, 0) + super(ANONYMOUS, self).__init__(sasl, name, 0) def get_values(self): """ |