From 0148b1c9b4350721090a6d4a9102b5fc7337ffbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Fri, 22 Mar 2024 09:21:36 +0100 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: François Cami --- kdcproxy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdcproxy/__init__.py b/kdcproxy/__init__.py index 1493b30..a44c29a 100644 --- a/kdcproxy/__init__.py +++ b/kdcproxy/__init__.py @@ -101,7 +101,7 @@ def __await_reply(self, pr, rsocks, wsocks, timeout): sock.sendall(pr.request) extra = 10 # New connections get 10 extra seconds except Exception as e: - logging.warning("Conection broken while writing (%s)", e) + logging.warning("Connection broken while writing (%s)", e) continue rsocks.append(sock) wsocks.remove(sock)