diff options
Diffstat (limited to 'examples/echo_client.py')
-rwxr-xr-x | examples/echo_client.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/echo_client.py b/examples/echo_client.py index cd1b1d02..122b20f0 100755 --- a/examples/echo_client.py +++ b/examples/echo_client.py @@ -24,6 +24,8 @@ import sleekxmpp if sys.version_info < (3, 0): reload(sys) sys.setdefaultencoding('utf8') +else: + raw_input = input class EchoBot(sleekxmpp.ClientXMPP): @@ -34,7 +36,7 @@ class EchoBot(sleekxmpp.ClientXMPP): """ def __init__(self, jid, password): - sleekxmpp.ClientXMPP.__init__(self, jid, password) + sleekxmpp.ClientXMPP.__init__(self, jid, password, plugin_config={'feature_mechanisms': {'use_mech': 'PLAIN'}}) # The session_start event will be triggered when # the bot establishes its connection with the server |