summaryrefslogtreecommitdiff
path: root/examples/pubsub_client.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2014-08-16 22:37:29 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-09-01 02:42:45 +0200
commit476d76a53301f9da2ac7efa094e209b0607adfdc (patch)
tree0307c1205944027fe79eab66d2b7ec293ed31238 /examples/pubsub_client.py
parentdf68bb48961574436c1ffc2463a31cd7d8227606 (diff)
downloadslixmpp-476d76a53301f9da2ac7efa094e209b0607adfdc.tar.gz
slixmpp-476d76a53301f9da2ac7efa094e209b0607adfdc.tar.bz2
slixmpp-476d76a53301f9da2ac7efa094e209b0607adfdc.tar.xz
slixmpp-476d76a53301f9da2ac7efa094e209b0607adfdc.zip
Remove threaded from examples’ add_event_handler.
Diffstat (limited to 'examples/pubsub_client.py')
-rwxr-xr-xexamples/pubsub_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pubsub_client.py b/examples/pubsub_client.py
index 3b413e24..7fdd227b 100755
--- a/examples/pubsub_client.py
+++ b/examples/pubsub_client.py
@@ -28,7 +28,7 @@ class PubsubClient(slixmpp.ClientXMPP):
self.data = data
self.pubsub_server = server
- self.add_event_handler('session_start', self.start, threaded=True)
+ self.add_event_handler('session_start', self.start)
def start(self, event):
self.get_roster()