diff options
Diffstat (limited to 'examples/ping.py')
-rwxr-xr-x | examples/ping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ping.py b/examples/ping.py index 85cf722b..25aaf989 100755 --- a/examples/ping.py +++ b/examples/ping.py @@ -34,7 +34,7 @@ class PingTest(slixmpp.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, threaded=True) + self.add_event_handler("session_start", self.start) def start(self, event): """ |