typo
This commit is contained in:
parent
1e636e7824
commit
32bb251381
|
@ -617,8 +617,9 @@ class Connection(ConnectionHandlers):
|
||||||
'warn_when_plaintext_connection'):
|
'warn_when_plaintext_connection'):
|
||||||
self.dispatch('PLAIN_CONNECTION', (con,))
|
self.dispatch('PLAIN_CONNECTION', (con,))
|
||||||
return True
|
return True
|
||||||
|
print hasattr(con.Connection, '_sslContext')
|
||||||
if _con_type in ('tls', 'ssl') and not hasattr(con.Connection,
|
if _con_type in ('tls', 'ssl') and not hasattr(con.Connection,
|
||||||
'_sslcontext') and gajim.config.get_per('accounts', self.name,
|
'_sslContext') and gajim.config.get_per('accounts', self.name,
|
||||||
'warn_when_insecure_ssl_connection'):
|
'warn_when_insecure_ssl_connection'):
|
||||||
# Pyopenssl is not used
|
# Pyopenssl is not used
|
||||||
self.dispatch('INSECURE_SSL_CONNECTION', (con, _con_type))
|
self.dispatch('INSECURE_SSL_CONNECTION', (con, _con_type))
|
||||||
|
|
Loading…
Reference in New Issue