diff options
-rw-r--r-- | examples/http_over_xmpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/http_over_xmpp.py b/examples/http_over_xmpp.py index 2b7f68bc..013f301b 100644 --- a/examples/http_over_xmpp.py +++ b/examples/http_over_xmpp.py @@ -23,7 +23,7 @@ class HTTPOverXMPPClient(ClientXMPP): ClientXMPP.__init__(self, jid, password) self.register_plugin('xep_0332') # HTTP over XMPP Transport self.add_event_handler( - 'session_start', self.session_start, threaded=True + 'session_start', self.session_start ) self.add_event_handler('http_request', self.http_request_received) self.add_event_handler('http_response', self.http_response_received) |