Update other examples to use threaded mode for handlers that call disconnect()

This commit is contained in:
Lance Stout
2012-05-06 20:19:02 -07:00
parent ec99339140
commit 24234bf718
5 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ class LocationBot(ClientXMPP):
def __init__(self, jid, password):
super(LocationBot, self).__init__(jid, password)
self.add_event_handler('session_start', self.start)
self.add_event_handler('session_start', self.start, threaded=True)
self.add_event_handler('user_location_publish',
self.user_location_publish)