From fb2f4b708271e1a7d59464e8b29591f74d96b98d Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Tue, 14 Nov 2023 22:47:38 -0600 Subject: [PATCH] Remove debugging log --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 6b80937..c71ea17 100644 --- a/bot.py +++ b/bot.py @@ -56,7 +56,7 @@ class bot(bare.bot): try: code = int(ircmsg.split(" ", 2)[1].strip()) except (IndexError, ValueError): - self.log("Err - No code") + pass print(bytes(ircmsg).lazy_decode()) if "NICKLEN" in ircmsg: self.nicklen = int(ircmsg.split("NICKLEN=")[1].split(" ")[0])