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:47:08 +0200 |
commit | 6175cbcd99f917b08646d130770a132458056249 (patch) | |
tree | 7aa51df981039fdfec06c141feb5b61888a4e8f9 /examples/echo_component.py | |
parent | 476d76a53301f9da2ac7efa094e209b0607adfdc (diff) | |
download | slixmpp-6175cbcd99f917b08646d130770a132458056249.tar.gz slixmpp-6175cbcd99f917b08646d130770a132458056249.tar.bz2 slixmpp-6175cbcd99f917b08646d130770a132458056249.tar.xz slixmpp-6175cbcd99f917b08646d130770a132458056249.zip |
Reintroduce XMLStream.process, making it run the asyncio event loop.
Diffstat (limited to 'examples/echo_component.py')
-rwxr-xr-x | examples/echo_component.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/examples/echo_component.py b/examples/echo_component.py index d56935f8..0512f37c 100755 --- a/examples/echo_component.py +++ b/examples/echo_component.py @@ -104,8 +104,5 @@ if __name__ == '__main__': xmpp.registerPlugin('xep_0199') # XMPP Ping # Connect to the XMPP server and start processing XMPP stanzas. - if xmpp.connect(): - xmpp.process(block=True) - print("Done") - else: - print("Unable to connect.") + xmpp.connect() + xmpp.process() |