From 907a46fe4e9729ff26c5f70d04e8b706906ef50a Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Tue, 16 Jul 2024 21:24:59 +0000 Subject: [PATCH] Typo and small correction --- server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.py b/server.py index 34c2c5a..a0c8aaa 100644 --- a/server.py +++ b/server.py @@ -7,9 +7,9 @@ from logs import log class Globals: ... -# The below line is a hacky fix for python 3.10 asyncio +# The two below lines are a hacky fix for python 3.10 asyncio TimoutError = TimeoutError -TimeoutError = (TimoutError, aysncio.exceptions.TimeoutError) +TimeoutError = (TimoutError, asyncio.exceptions.TimeoutError) G = Globals() G.uniqueClients = 0 G.servers = {}