removed useless 'use_tls' variable

This commit is contained in:
Tom Nichols 2010-07-09 16:12:32 -04:00
parent 879dd11daa
commit 9c850f080d

View File

@ -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: