diff options
author | Tom Nichols <tmnichols@gmail.com> | 2010-07-09 16:12:32 -0400 |
---|---|---|
committer | Tom Nichols <tmnichols@gmail.com> | 2010-07-09 17:21:50 -0400 |
commit | 9c850f080d8000cb6462082a0468ec7fdbc46575 (patch) | |
tree | 122f936f34a96a07c4be1ca5ec1b72a48485f248 | |
parent | 879dd11daa8056c8ef3863f45a31e544d76f735e (diff) | |
download | slixmpp-9c850f080d8000cb6462082a0468ec7fdbc46575.tar.gz slixmpp-9c850f080d8000cb6462082a0468ec7fdbc46575.tar.bz2 slixmpp-9c850f080d8000cb6462082a0468ec7fdbc46575.tar.xz slixmpp-9c850f080d8000cb6462082a0468ec7fdbc46575.zip |
removed useless 'use_tls' variable
-rw-r--r-- | sleekxmpp/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/__init__.py b/sleekxmpp/__init__.py index d12570c0..84c67bc5 100644 --- a/sleekxmpp/__init__.py +++ b/sleekxmpp/__init__.py @@ -146,7 +146,7 @@ class ClientXMPP(basexmpp, XMLStream): logging.debug('Attempting connection to %s:%d', host, port ) #TODO option to not use TLS? - result = XMLStream.connect(self, host, port, use_tls=True) + result = XMLStream.connect(self, host, port) if result: self.event("connected") else: |