summaryrefslogtreecommitdiff
path: root/examples/echo_client.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-08-23 14:14:21 -0700
committerLance Stout <lancestout@gmail.com>2011-08-23 14:14:21 -0700
commit2a8082407656bf78a487afcf20017b10ca6475cc (patch)
tree989e5c9a6ab2b49281bbf98623a2446898769cf2 /examples/echo_client.py
parentf92f96325ac12160554cdf94d98b6742671d67a1 (diff)
downloadslixmpp-2a8082407656bf78a487afcf20017b10ca6475cc.tar.gz
slixmpp-2a8082407656bf78a487afcf20017b10ca6475cc.tar.bz2
slixmpp-2a8082407656bf78a487afcf20017b10ca6475cc.tar.xz
slixmpp-2a8082407656bf78a487afcf20017b10ca6475cc.zip
Remove extra debugging code that made it into a commit.sleek-1.0-RC11.0-RC1
Diffstat (limited to 'examples/echo_client.py')
-rwxr-xr-xexamples/echo_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/echo_client.py b/examples/echo_client.py
index 122b20f0..7e882a4a 100755
--- a/examples/echo_client.py
+++ b/examples/echo_client.py
@@ -36,7 +36,7 @@ class EchoBot(sleekxmpp.ClientXMPP):
"""
def __init__(self, jid, password):
- sleekxmpp.ClientXMPP.__init__(self, jid, password, plugin_config={'feature_mechanisms': {'use_mech': 'PLAIN'}})
+ sleekxmpp.ClientXMPP.__init__(self, jid, password)
# The session_start event will be triggered when
# the bot establishes its connection with the server