summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-02-13 14:04:23 +0100
committermathieui <mathieui@mathieui.net>2012-02-13 14:04:23 +0100
commitbe5ccce421143527f7779c662f4c920aba58f79c (patch)
tree184bd594b80466b52969ebb9a734b9906d5331df /src
parented4f74faf1855a676c3407c0236baede34aba3ab (diff)
downloadpoezio-be5ccce421143527f7779c662f4c920aba58f79c.tar.gz
poezio-be5ccce421143527f7779c662f4c920aba58f79c.tar.bz2
poezio-be5ccce421143527f7779c662f4c920aba58f79c.tar.xz
poezio-be5ccce421143527f7779c662f4c920aba58f79c.zip
Useless option ssl=True (deprecated & unused)
Diffstat (limited to 'src')
-rw-r--r--src/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.py b/src/connection.py
index 74a21cdb..8a7c1ea7 100644
--- a/src/connection.py
+++ b/src/connection.py
@@ -40,7 +40,7 @@ class Connection(sleekxmpp.ClientXMPP):
self.anon = True
jid = '%s/%s' % (config.get('server', 'anon.louiz.org'), resource)
password = None
- sleekxmpp.ClientXMPP.__init__(self, jid, password, ssl=True)
+ sleekxmpp.ClientXMPP.__init__(self, jid, password)
self.core = None
self.auto_reconnect = True if config.get('auto_reconnect', 'false').lower() in ('true', '1') else False
self.auto_authorize = None