summaryrefslogtreecommitdiff
path: root/examples/ping.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-12-30 20:14:54 -0800
committerLance Stout <lancestout@gmail.com>2011-12-30 20:14:54 -0800
commit4e23a4e08e94db3292be41010d4da572c7ce9ee0 (patch)
tree6126ff82bbe2e860bfd2cbb4594de63d0dc76bc4 /examples/ping.py
parent522f0dac167717603f2b52c0e0c10389d9e41768 (diff)
parent8cafa8578f35aa96205b7c163ba9c272ca27a1b5 (diff)
downloadslixmpp-4e23a4e08e94db3292be41010d4da572c7ce9ee0.tar.gz
slixmpp-4e23a4e08e94db3292be41010d4da572c7ce9ee0.tar.bz2
slixmpp-4e23a4e08e94db3292be41010d4da572c7ce9ee0.tar.xz
slixmpp-4e23a4e08e94db3292be41010d4da572c7ce9ee0.zip
Merge pull request #130 from rhcarvalho/master
Some small fixes
Diffstat (limited to 'examples/ping.py')
-rwxr-xr-xexamples/ping.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ping.py b/examples/ping.py
index 462b8379..81194eef 100755
--- a/examples/ping.py
+++ b/examples/ping.py
@@ -129,14 +129,14 @@ if __name__ == '__main__':
# Connect to the XMPP server and start processing XMPP stanzas.
if xmpp.connect():
- # If you do not have the pydns library installed, you will need
+ # 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(threaded=False)
+ xmpp.process(block=True)
print("Done")
else:
print("Unable to connect.")