From a3898961ea517f6daa968e9674a338aeef45bee5 Mon Sep 17 00:00:00 2001 From: "Dmitry D. Chernov" Date: Mon, 11 Feb 2019 09:02:46 +1000 Subject: [PATCH] Review fixes --- telethon/network/connection/tcpmtproxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telethon/network/connection/tcpmtproxy.py b/telethon/network/connection/tcpmtproxy.py index 59e7a428..ed437a28 100644 --- a/telethon/network/connection/tcpmtproxy.py +++ b/telethon/network/connection/tcpmtproxy.py @@ -26,7 +26,7 @@ class ConnectionTcpMTProxy(ConnectionTcpObfuscated): self._secret = bytes.fromhex(proxy[2]) if len(self._secret) != 16: raise ValueError( - "MTProxy secure mode is not implemented for now, sorry" + "MTProxy secure mode is not implemented for now" if len(self._secret) == 17 and self._secret[0] == 0xDD else "MTProxy secret must be a hex-string representing 16 bytes" )