From 068996ab36bbcdd6b41cffb861e14194f310a598 Mon Sep 17 00:00:00 2001 From: Alexander Bersenev Date: Fri, 23 Aug 2019 01:45:54 +0500 Subject: [PATCH] fix small typo --- mtprotoproxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtprotoproxy.py b/mtprotoproxy.py index 4f33557..d49d6be 100755 --- a/mtprotoproxy.py +++ b/mtprotoproxy.py @@ -1256,7 +1256,7 @@ async def do_middleproxy_handshake(proto_tag, dc_idx, cl_ip, cl_port): print_err("The Telegram server %d (%s %s) is refusing connections" % (dc_idx, addr, port)) return False except (OSError, asyncio.TimeoutError) as E: - print_err("Unable to connect to the Telegram server %d (%s %s)", (dc_idx, addr, port)) + print_err("Unable to connect to the Telegram server %d (%s %s)" % (dc_idx, addr, port)) return False set_keepalive(writer_tgt.get_extra_info("socket"))