From 9c4886e7467a9f98356d78141e14999a044719ea Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Mon, 14 May 2012 22:17:39 -0700 Subject: Remove extra connection info so that examples run without modification. GTalk users may still need to change the connect() call if dnspython is not installed, as usual. --- examples/custom_stanzas/custom_stanza_provider.py | 2 +- examples/custom_stanzas/custom_stanza_user.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/custom_stanzas/custom_stanza_provider.py b/examples/custom_stanzas/custom_stanza_provider.py index 40a77204..b532c17c 100755 --- a/examples/custom_stanzas/custom_stanza_provider.py +++ b/examples/custom_stanzas/custom_stanza_provider.py @@ -159,7 +159,7 @@ if __name__ == '__main__': # xmpp.ca_certs = "path/to/ca/cert" # Connect to the XMPP server and start processing XMPP stanzas. - if xmpp.connect(('xmpp-server', 5222)): + 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 diff --git a/examples/custom_stanzas/custom_stanza_user.py b/examples/custom_stanzas/custom_stanza_user.py index eabb45fe..5b5042c7 100755 --- a/examples/custom_stanzas/custom_stanza_user.py +++ b/examples/custom_stanzas/custom_stanza_user.py @@ -161,7 +161,7 @@ if __name__ == '__main__': # xmpp.ca_certs = "path/to/ca/cert" # Connect to the XMPP server and start processing XMPP stanzas. - if xmpp.connect(('xmpp-server', 5222)): + 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 -- cgit v1.2.3