diff options
| author | 2018-09-09 23:23:16 +0100 | |
|---|---|---|
| committer | 2018-09-09 23:23:16 +0100 | |
| commit | 451b4e7207b26ca3bc543615aecd5b69223d7d94 (patch) | |
| tree | d059b0c4bdf104044f6933c4ad6cb87482f14efb | |
| parent | bitly-api-key isn't used anymore (diff) | |
Fix a copypaste fail that pointed TAGMSG at ACCOUNT handling code
| -rw-r--r-- | IRCLineHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
