From 4d063e287e1bb2010d115325a3c8c6ca7c542bfc Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 12 Feb 2015 12:21:20 +0100 Subject: Remove more threaded= and block= options from the plugins (also, correct a typo) --- slixmpp/plugins/xep_0199/ping.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'slixmpp/plugins/xep_0199/ping.py') diff --git a/slixmpp/plugins/xep_0199/ping.py b/slixmpp/plugins/xep_0199/ping.py index a8171105..92962ebe 100644 --- a/slixmpp/plugins/xep_0199/ping.py +++ b/slixmpp/plugins/xep_0199/ping.py @@ -71,8 +71,7 @@ class XEP_0199(BasePlugin): if self.keepalive: self.xmpp.add_event_handler('session_start', - self.enable_keepalive, - threaded=True) + self.enable_keepalive) self.xmpp.add_event_handler('session_end', self.disable_keepalive) @@ -129,8 +128,7 @@ class XEP_0199(BasePlugin): timeout -- Time in seconds to wait for a response. Defaults to self.timeout. callback -- Optional handler to execute when a pong - is received. Useful in conjunction with - the option block=False. + is received. """ if not timeout: timeout = self.timeout -- cgit v1.2.3