From 8c068aa86b5d5c7d0fb6fc079b84254e434f7e31 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 15 Oct 2011 12:38:30 -0400 Subject: [PATCH] join parsing fix --- bot/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/frontend.py b/bot/frontend.py index ba774e1..a043f1b 100644 --- a/bot/frontend.py +++ b/bot/frontend.py @@ -65,7 +65,7 @@ def _process_message(line): if line[1] == "JOIN": data.nick, data.ident, data.host = sender_regex.findall(line[0])[0] - data.chan = line[2][1:] + data.chan = line[2] # Check for 'join' hooks in our commands: commands.check("join", data)