From 270922b46057702db238d92f29339cd87c96e227 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Tue, 3 Apr 2018 14:43:41 +0200 Subject: [PATCH] Fix implicit ssl connection typo --- src/Connection/Connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connection/Connection.py b/src/Connection/Connection.py index 88f3ac4d..6658cf20 100644 --- a/src/Connection/Connection.py +++ b/src/Connection/Connection.py @@ -127,7 +127,7 @@ class Connection(object): self.sock.do_handshake() self.crypt = "tls-rsa" self.sock_wrapped = True - elif should_encrypt and "tsl-rsa" in CryptConnection.manager.crypt_supported: + elif should_encrypt and "tls-rsa" in CryptConnection.manager.crypt_supported: try: self.sock = CryptConnection.manager.wrapSocket(self.sock, "tls-rsa") self.sock.do_handshake()