From f8e6a55ada8d2c9035241d172c01321bca2d2574 Mon Sep 17 00:00:00 2001 From: jesopo Date: Sun, 10 Feb 2019 22:52:23 +0000 Subject: [PATCH] Add a comment as to why IRCLine's LINE_CUTOFF is 470, not 510 --- src/IRCLine.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/IRCLine.py b/src/IRCLine.py index f515a01a..2b1eb63d 100644 --- a/src/IRCLine.py +++ b/src/IRCLine.py @@ -1,6 +1,7 @@ import datetime, typing from src import IRCObject, utils +# this should be 510 (RFC1459, 512 with \r\n) but a server BitBot uses is broken LINE_CUTOFF = 470 class Line(IRCObject.Object):