diff options
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() |