scroll- irc bot to play ascii art |
git clone git://git.acid.vegas/scroll.git |
Log | Files | Refs | Archive | README | LICENSE |
commit f46c80ecfafc66efa94964b92c9c5b7cce94d6ec
parent 1deefcef762d01da2dfc59ae5de6afe882f24441 Author: acidvegas <acid.vegas@acid.vegas> Date: Sun, 25 Jun 2023 03:13:51 -0400 Fixed socket timeout Diffstat:
|
1 file changed, 1 insertion(+), 1 deletion(-) |
diff --git a/scroll.py b/scroll.py @@ -177,7 +177,7 @@ class Bot(): try: if self.reader.at_eof(): break - data = await asyncio.wait_for(self.reader.readuntil(b'\r\n'), 200) + data = await asyncio.wait_for(self.reader.readuntil(b'\r\n'), 600) line = data.decode('utf-8').strip() args = line.split() debug(line) |