summaryrefslogtreecommitdiff
path: root/sleekxmpp/features/feature_mechanisms/mechanisms.py
diff options
context:
space:
mode:
authorAnton Ryzhov <anton@ryzhov.me>2013-03-28 22:41:00 +0400
committerAnton Ryzhov <anton@ryzhov.me>2013-03-28 22:41:00 +0400
commit481971928c972a96a114b6dcf6480e48b530d95b (patch)
tree087efc13f84b19e4c0b6820f7956eeac0fd3784c /sleekxmpp/features/feature_mechanisms/mechanisms.py
parent020197718f81937a755f1ca1f1126fc1e15dbd72 (diff)
downloadslixmpp-481971928c972a96a114b6dcf6480e48b530d95b.tar.gz
slixmpp-481971928c972a96a114b6dcf6480e48b530d95b.tar.bz2
slixmpp-481971928c972a96a114b6dcf6480e48b530d95b.tar.xz
slixmpp-481971928c972a96a114b6dcf6480e48b530d95b.zip
`failed_auth` data returned
Manual updated
Diffstat (limited to 'sleekxmpp/features/feature_mechanisms/mechanisms.py')
-rw-r--r--sleekxmpp/features/feature_mechanisms/mechanisms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/features/feature_mechanisms/mechanisms.py b/sleekxmpp/features/feature_mechanisms/mechanisms.py
index 2ed3e00b..58ed9b91 100644
--- a/sleekxmpp/features/feature_mechanisms/mechanisms.py
+++ b/sleekxmpp/features/feature_mechanisms/mechanisms.py
@@ -235,6 +235,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", direct=True)
+ self.xmpp.event("failed_auth", stanza, direct=True)
self._send_auth()
return True