From 531d08fc14ab7476d08ed2b79ae97aa0650cf217 Mon Sep 17 00:00:00 2001 From: swee Date: Tue, 10 Dec 2024 21:35:13 -0800 Subject: [PATCH] Update server.py --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 7514921..7901ddf 100644 --- a/server.py +++ b/server.py @@ -35,7 +35,7 @@ print("Now listening on port 6667") def pinger(nick, connection): while nick in property_list: global property_list - print(property_list[nick]["ping_pending"] = True) + print(property_list[nick]["ping_pending"] == True) if (time.time() - property_list[nick]["last_ping"]) > 60 and not property_list[nick]["ping_pending"]: print("Sent ping message to " + nick) connection.sendall(bytes(f"PING {server}\r\n","UTF-8"))