From 74117453b5c3c2be51206a2b34a3ea2e1818f9d4 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Wed, 23 Jul 2014 17:01:17 +0200 Subject: Cleanup how events are run, they are always direct by definition now --- slixmpp/plugins/xep_0078/legacyauth.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'slixmpp/plugins/xep_0078/legacyauth.py') diff --git a/slixmpp/plugins/xep_0078/legacyauth.py b/slixmpp/plugins/xep_0078/legacyauth.py index 8d2ea230..eac1b57e 100644 --- a/slixmpp/plugins/xep_0078/legacyauth.py +++ b/slixmpp/plugins/xep_0078/legacyauth.py @@ -82,12 +82,12 @@ class XEP_0078(BasePlugin): resp = iq.send(now=True) except IqError as err: log.info("Authentication failed: %s", err.iq['error']['condition']) - self.xmpp.event('failed_auth', direct=True) + self.xmpp.event('failed_auth') self.xmpp.disconnect() return True except IqTimeout: log.info("Authentication failed: %s", 'timeout') - self.xmpp.event('failed_auth', direct=True) + self.xmpp.event('failed_auth') self.xmpp.disconnect() return True @@ -123,11 +123,11 @@ class XEP_0078(BasePlugin): result = iq.send(now=True) except IqError as err: log.info("Authentication failed") - self.xmpp.event("failed_auth", direct=True) + self.xmpp.event("failed_auth") self.xmpp.disconnect() except IqTimeout: log.info("Authentication failed") - self.xmpp.event("failed_auth", direct=True) + self.xmpp.event("failed_auth") self.xmpp.disconnect() self.xmpp.features.add('auth') @@ -137,7 +137,7 @@ class XEP_0078(BasePlugin): self.xmpp.boundjid = JID(self.xmpp.requested_jid, resource=resource, cache_lock=True) - self.xmpp.event('session_bind', self.xmpp.boundjid, direct=True) + self.xmpp.event('session_bind', self.xmpp.boundjid) log.debug("Established Session") self.xmpp.sessionstarted = True -- cgit v1.2.3