From 9c850f080d8000cb6462082a0468ec7fdbc46575 Mon Sep 17 00:00:00 2001 From: Tom Nichols Date: Fri, 9 Jul 2010 16:12:32 -0400 Subject: removed useless 'use_tls' variable --- sleekxmpp/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.3