diff options
author | mathieui <mathieui@mathieui.net> | 2012-02-13 14:04:23 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-02-13 14:04:23 +0100 |
commit | be5ccce421143527f7779c662f4c920aba58f79c (patch) | |
tree | 184bd594b80466b52969ebb9a734b9906d5331df /src | |
parent | ed4f74faf1855a676c3407c0236baede34aba3ab (diff) | |
download | poezio-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.py | 2 |
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 |