diff options
Diffstat (limited to 'examples/adhoc_provider.py')
-rwxr-xr-x | examples/adhoc_provider.py | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/examples/adhoc_provider.py b/examples/adhoc_provider.py index e0a7effd..e4a8fc04 100755 --- a/examples/adhoc_provider.py +++ b/examples/adhoc_provider.py @@ -179,15 +179,5 @@ if __name__ == '__main__': # xmpp.ca_certs = "path/to/ca/cert" # Connect to the XMPP server and start processing XMPP stanzas. - if xmpp.connect(): - # If you do not have the dnspython library installed, you will need - # to manually specify the name of the server if it does not match - # the one in the JID. For example, to use Google Talk you would - # need to use: - # - # if xmpp.connect(('talk.google.com', 5222)): - # ... - xmpp.process(block=True) - print("Done") - else: - print("Unable to connect.") + xmpp.connect() + xmpp.process() |