diff options
author | Lance Stout <lancestout@gmail.com> | 2012-05-06 20:19:02 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-05-06 20:19:02 -0700 |
commit | 24234bf7182066d6c2ee827c8121b8daede56663 (patch) | |
tree | 36fb7dcb69c1914e1144e1575080748c57ab40be /examples/pubsub_client.py | |
parent | ec99339140364ade00451689fe308c655f68165a (diff) | |
download | slixmpp-24234bf7182066d6c2ee827c8121b8daede56663.tar.gz slixmpp-24234bf7182066d6c2ee827c8121b8daede56663.tar.bz2 slixmpp-24234bf7182066d6c2ee827c8121b8daede56663.tar.xz slixmpp-24234bf7182066d6c2ee827c8121b8daede56663.zip |
Update other examples to use threaded mode for handlers that call disconnect()
Diffstat (limited to 'examples/pubsub_client.py')
-rw-r--r-- | examples/pubsub_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pubsub_client.py b/examples/pubsub_client.py index b0459c84..0a244f3b 100644 --- a/examples/pubsub_client.py +++ b/examples/pubsub_client.py @@ -37,7 +37,7 @@ class PubsubClient(sleekxmpp.ClientXMPP): self.data = data self.pubsub_server = server - self.add_event_handler('session_start', self.start) + self.add_event_handler('session_start', self.start, threaded=True) def start(self, event): self.get_roster() |