diff options
author | Lance Stout <lancestout@gmail.com> | 2012-06-09 10:43:57 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-06-09 10:43:57 -0700 |
commit | 10664d723b24739bd0b868b71dbcc8dab80d02ef (patch) | |
tree | 711fe9da45c48f2b49fcce97d658e9a1185982a1 /sleekxmpp/componentxmpp.py | |
parent | c012208a8fd411ff2f915a162ec5a3f8eeec41cb (diff) | |
download | slixmpp-10664d723b24739bd0b868b71dbcc8dab80d02ef.tar.gz slixmpp-10664d723b24739bd0b868b71dbcc8dab80d02ef.tar.bz2 slixmpp-10664d723b24739bd0b868b71dbcc8dab80d02ef.tar.xz slixmpp-10664d723b24739bd0b868b71dbcc8dab80d02ef.zip |
Default use_tls to False for components.
Issue #171
Diffstat (limited to 'sleekxmpp/componentxmpp.py')
-rw-r--r-- | sleekxmpp/componentxmpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py index 348a08e0..1fb9c4d9 100644 --- a/sleekxmpp/componentxmpp.py +++ b/sleekxmpp/componentxmpp.py @@ -79,7 +79,7 @@ class ComponentXMPP(BaseXMPP): self._handle_probe) def connect(self, host=None, port=None, use_ssl=False, - use_tls=True, reattempt=True): + use_tls=False, reattempt=True): """Connect to the server. Setting ``reattempt`` to ``True`` will cause connection attempts to |