summaryrefslogtreecommitdiff
path: root/examples/proxy_echo_client.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-12-31 01:29:12 -0500
committerLance Stout <lancestout@gmail.com>2011-12-31 01:29:12 -0500
commite0545bf0bc06893ca905b2a3ebb4d09c76c24f0c (patch)
tree6a5fe2cee8a3a4bb77d7b99d2d80d9fc7be2511d /examples/proxy_echo_client.py
parentd817d64c65c62976481690c0bfc3882621ac0455 (diff)
parent03bc38f7e34f6f8f6d79b58477d56df8e488578c (diff)
downloadslixmpp-e0545bf0bc06893ca905b2a3ebb4d09c76c24f0c.tar.gz
slixmpp-e0545bf0bc06893ca905b2a3ebb4d09c76c24f0c.tar.bz2
slixmpp-e0545bf0bc06893ca905b2a3ebb4d09c76c24f0c.tar.xz
slixmpp-e0545bf0bc06893ca905b2a3ebb4d09c76c24f0c.zip
Merge branch 'develop' into develop-1.1
Diffstat (limited to 'examples/proxy_echo_client.py')
-rwxr-xr-xexamples/proxy_echo_client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/proxy_echo_client.py b/examples/proxy_echo_client.py
index 3466dc9b..1f4ba9d3 100755
--- a/examples/proxy_echo_client.py
+++ b/examples/proxy_echo_client.py
@@ -156,14 +156,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.")