diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2014-08-16 22:37:29 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-09-01 02:42:45 +0200 |
commit | 476d76a53301f9da2ac7efa094e209b0607adfdc (patch) | |
tree | 0307c1205944027fe79eab66d2b7ec293ed31238 /examples/user_location.py | |
parent | df68bb48961574436c1ffc2463a31cd7d8227606 (diff) | |
download | slixmpp-476d76a53301f9da2ac7efa094e209b0607adfdc.tar.gz slixmpp-476d76a53301f9da2ac7efa094e209b0607adfdc.tar.bz2 slixmpp-476d76a53301f9da2ac7efa094e209b0607adfdc.tar.xz slixmpp-476d76a53301f9da2ac7efa094e209b0607adfdc.zip |
Remove threaded from examples’ add_event_handler.
Diffstat (limited to 'examples/user_location.py')
-rwxr-xr-x | examples/user_location.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/user_location.py b/examples/user_location.py index 5fa4f560..7fa77e68 100755 --- a/examples/user_location.py +++ b/examples/user_location.py @@ -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, threaded=True) + self.add_event_handler('session_start', self.start) self.add_event_handler('user_location_publish', self.user_location_publish) |