From 451b4e7207b26ca3bc543615aecd5b69223d7d94 Mon Sep 17 00:00:00 2001 From: jesopo Date: Sun, 9 Sep 2018 23:23:16 +0100 Subject: [PATCH] Fix a copypaste fail that pointed TAGMSG at ACCOUNT handling code --- IRCLineHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRCLineHandler.py b/IRCLineHandler.py index e3a53303..9f3b6090 100644 --- a/IRCLineHandler.py +++ b/IRCLineHandler.py @@ -44,7 +44,7 @@ class LineHandler(object): events.on("raw.NOTICE").hook(self.notice) events.on("raw.CHGHOST").hook(self.chghost) events.on("raw.ACCOUNT").hook(self.account) - events.on("raw.TAGMSG").hook(self.account) + events.on("raw.TAGMSG").hook(self.tagmsg) events.on("raw.AWAY").hook(self.away) events.on("raw.CAP").hook(self.cap)