From 6077d06c99f5c72c5805cc2262ee4099ca23cb7c Mon Sep 17 00:00:00 2001 From: jesopo Date: Tue, 27 Nov 2018 17:34:10 +0000 Subject: [PATCH] Copypaste fail, 'target_channel' -> 'event["target_channel"]' (print_activity.py) --- modules/print_activity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/print_activity.py b/modules/print_activity.py index 474a665e..53a5eb90 100644 --- a/modules/print_activity.py +++ b/modules/print_activity.py @@ -128,4 +128,4 @@ class Module(ModuleManager.BaseModule): @utils.hook("received.invite") def invite(self, event): self.print_line(event, "%s was invited to %s" % ( - event["user"].nickname, target_channel)) + event["user"].nickname, event["target_channel"]))