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 = {}