Typo and small correction

This commit is contained in:
Firepup Sixfifty 2024-07-16 21:24:59 +00:00
parent 17f9ee7cae
commit 907a46fe4e
Signed by: Firepup650
SSH key fingerprint: SHA256:U0Zp8EhEe3CMqFSrC79CqatzaEiL4sjta80/RSX2XrY

View file

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