From 7fb2a000a7dd664e4f63f854c164add6f8d42d89 Mon Sep 17 00:00:00 2001 From: swee Date: Sat, 25 Jan 2025 21:23:24 -0800 Subject: [PATCH] Update server.py --- server.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server.py b/server.py index 3f1b8cc..f3c7b07 100644 --- a/server.py +++ b/server.py @@ -251,7 +251,7 @@ def session(connection, client, ip, isssl=False): try: identQuery = getident(client[0], client[1], isssl) responseee = identQuery["response"] - print(identQUery) + print(identQuery) if identQuery["success"] == True: connection.sendall(bytes(f":{server} NOTICE * :*** Uhm, Couldn't find your ident: {responseee}\r\n","UTF-8")) else: @@ -259,6 +259,7 @@ def session(connection, client, ip, isssl=False): clident = responseee rident = responseee except: + print(traceback.format_exc()) connection.sendall(bytes(f":{server} NOTICE * :*** Uhm, Couldn't find your ident: Unknown error.\r\n","UTF-8")) while True: try: