summaryrefslogtreecommitdiff
path: root/sleekxmpp
diff options
context:
space:
mode:
authorTom Nichols <tmnichols@gmail.com>2010-07-09 16:12:32 -0400
committerTom Nichols <tmnichols@gmail.com>2010-07-09 17:21:50 -0400
commit9c850f080d8000cb6462082a0468ec7fdbc46575 (patch)
tree122f936f34a96a07c4be1ca5ec1b72a48485f248 /sleekxmpp
parent879dd11daa8056c8ef3863f45a31e544d76f735e (diff)
downloadslixmpp-9c850f080d8000cb6462082a0468ec7fdbc46575.tar.gz
slixmpp-9c850f080d8000cb6462082a0468ec7fdbc46575.tar.bz2
slixmpp-9c850f080d8000cb6462082a0468ec7fdbc46575.tar.xz
slixmpp-9c850f080d8000cb6462082a0468ec7fdbc46575.zip
removed useless 'use_tls' variable
Diffstat (limited to 'sleekxmpp')
-rw-r--r--sleekxmpp/__init__.py2
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: