diff options
author | mathieui <mathieui@mathieui.net> | 2017-02-14 01:04:38 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2017-02-14 01:04:38 +0100 |
commit | cabf6231316ba97aab0957eac92a32716277ebfc (patch) | |
tree | dc3b2e9ef6fb9927d93239140b88bd88892b0985 | |
parent | ffc240d5b6ba62b29e670483c73b110b3edfefe4 (diff) | |
download | slixmpp-cabf6231316ba97aab0957eac92a32716277ebfc.tar.gz slixmpp-cabf6231316ba97aab0957eac92a32716277ebfc.tar.bz2 slixmpp-cabf6231316ba97aab0957eac92a32716277ebfc.tar.xz slixmpp-cabf6231316ba97aab0957eac92a32716277ebfc.zip |
Fix the http over xmpp example
-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) |