From 57fffaafc005e121e152dea3b463452c36637b0f Mon Sep 17 00:00:00 2001 From: TheKysek Date: Sat, 1 Jul 2017 16:50:08 +0200 Subject: [PATCH] Python 3.4 TLS fix --- minode/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minode/connection.py b/minode/connection.py index 66066ca..8d6b6de 100644 --- a/minode/connection.py +++ b/minode/connection.py @@ -171,7 +171,7 @@ class Connection(threading.Thread): self.status = 'disconnecting' break self.tls = True - logging.debug('Established {} connection with {}:{}'.format(self.s.version(), self.host_print, self.port)) + logging.debug('Established TLS connection with {}:{}'.format(self.host_print, self.port)) def _send_message(self, m): if type(m) == message.Message and m.command == b'object':