diff options
author | Anton Ryzhov <anton@ryzhov.me> | 2013-03-28 21:42:37 +0400 |
---|---|---|
committer | Anton Ryzhov <anton@ryzhov.me> | 2013-03-28 22:09:33 +0400 |
commit | 620ee9719f06043a8865dd74f7ce1231ae16ba53 (patch) | |
tree | 8eb1036d0ad8af55ea11ffd4ddee2ee0b55b8b5d /sleekxmpp/features/feature_mechanisms | |
parent | c0d02d99354780dfd0ca1cfa96222c626eb3be48 (diff) | |
download | slixmpp-620ee9719f06043a8865dd74f7ce1231ae16ba53.tar.gz slixmpp-620ee9719f06043a8865dd74f7ce1231ae16ba53.tar.bz2 slixmpp-620ee9719f06043a8865dd74f7ce1231ae16ba53.tar.xz slixmpp-620ee9719f06043a8865dd74f7ce1231ae16ba53.zip |
Changed `failed_auth` event according to manual
Diffstat (limited to 'sleekxmpp/features/feature_mechanisms')
-rw-r--r-- | sleekxmpp/features/feature_mechanisms/mechanisms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/features/feature_mechanisms/mechanisms.py b/sleekxmpp/features/feature_mechanisms/mechanisms.py index 81b997eb..eb161be8 100644 --- a/sleekxmpp/features/feature_mechanisms/mechanisms.py +++ b/sleekxmpp/features/feature_mechanisms/mechanisms.py @@ -234,6 +234,6 @@ class FeatureMechanisms(BasePlugin): """SASL authentication failed. Disconnect and shutdown.""" self.attempted_mechs.add(self.mech.name) log.info("Authentication failed: %s", stanza['condition']) - self.xmpp.event("failed_auth", stanza, direct=True) + self.xmpp.event("failed_auth", direct=True) self._send_auth() return True |