summaryrefslogtreecommitdiff
path: root/examples/disco_browser.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-05-06 20:19:02 -0700
committerLance Stout <lancestout@gmail.com>2012-05-06 20:19:02 -0700
commit24234bf7182066d6c2ee827c8121b8daede56663 (patch)
tree36fb7dcb69c1914e1144e1575080748c57ab40be /examples/disco_browser.py
parentec99339140364ade00451689fe308c655f68165a (diff)
downloadslixmpp-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/disco_browser.py')
-rwxr-xr-xexamples/disco_browser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/disco_browser.py b/examples/disco_browser.py
index 0d282d78..ff0af97d 100755
--- a/examples/disco_browser.py
+++ b/examples/disco_browser.py
@@ -62,7 +62,7 @@ class Disco(sleekxmpp.ClientXMPP):
# and the XML streams are ready for use. We want to
# listen for this event so that we we can initialize
# our roster.
- self.add_event_handler("session_start", self.start)
+ self.add_event_handler("session_start", self.start, threaded=True)
def start(self, event):
"""