aboutsummaryrefslogtreecommitdiff
path: root/modules/print_activity.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-27 17:34:10 +0000
committerGravatar jesopo2018-11-27 17:34:10 +0000
commit6077d06c99f5c72c5805cc2262ee4099ca23cb7c (patch)
treec0e4ca6e0d559b3fb540f3eb72a93b933afcd5d3 /modules/print_activity.py
parentPrint when we receive and INVITE (diff)
signature
Copypaste fail, 'target_channel' -> 'event["target_channel"]'
(print_activity.py)
Diffstat (limited to 'modules/print_activity.py')
-rw-r--r--modules/print_activity.py2
1 files changed, 1 insertions, 1 deletions
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"]))