Remove debugging log
This commit is contained in:
parent
6adcf4c482
commit
fb2f4b7082
1 changed files with 1 additions and 1 deletions
2
bot.py
2
bot.py
|
@ -56,7 +56,7 @@ class bot(bare.bot):
|
||||||
try:
|
try:
|
||||||
code = int(ircmsg.split(" ", 2)[1].strip())
|
code = int(ircmsg.split(" ", 2)[1].strip())
|
||||||
except (IndexError, ValueError):
|
except (IndexError, ValueError):
|
||||||
self.log("Err - No code")
|
pass
|
||||||
print(bytes(ircmsg).lazy_decode())
|
print(bytes(ircmsg).lazy_decode())
|
||||||
if "NICKLEN" in ircmsg:
|
if "NICKLEN" in ircmsg:
|
||||||
self.nicklen = int(ircmsg.split("NICKLEN=")[1].split(" ")[0])
|
self.nicklen = int(ircmsg.split("NICKLEN=")[1].split(" ")[0])
|
||||||
|
|
Loading…
Reference in a new issue