From 94fd98a1fbb4d527dbcfeddfdfa7a74aed9cff92 Mon Sep 17 00:00:00 2001 From: Alexander Bersenev Date: Fri, 20 Sep 2019 17:19:33 +0500 Subject: [PATCH] correct spelling --- mtprotoproxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtprotoproxy.py b/mtprotoproxy.py index efee34e..325a014 100755 --- a/mtprotoproxy.py +++ b/mtprotoproxy.py @@ -239,7 +239,7 @@ def apply_upstream_proxy_settings(): # apply socks settings in place if config.SOCKS5_HOST and config.SOCKS5_PORT: import socks - print_err("Socket mode activated, it is incompatible with advertising and uvloop") + print_err("Socket-proxy mode activated, it is incompatible with advertising and uvloop") socks.set_default_proxy(socks.PROXY_TYPE_SOCKS5, config.SOCKS5_HOST, config.SOCKS5_PORT, username=config.SOCKS5_USER, password=config.SOCKS5_PASS) if not hasattr(socket, "origsocket"):