From 3ca0230733595cb962ca783586e4ce73a085c90b Mon Sep 17 00:00:00 2001 From: jesopo Date: Tue, 4 Sep 2018 07:01:59 +0100 Subject: [PATCH] Fix referencing account tag for ACCOUNT in IRCLineHandler --- IRCLineHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRCLineHandler.py b/IRCLineHandler.py index e1d32bec..c2a701c8 100644 --- a/IRCLineHandler.py +++ b/IRCLineHandler.py @@ -456,7 +456,7 @@ class LineHandler(object): if not event["args"][0] == "*": self.events.on("received.account.login").call(user=user, - server=event["server"], account=account) + server=event["server"], account=event["tags"]["account"]) else: self.events.on("received.account.logout").call(user=user, server=event["server"])