aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/print_activity.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/print_activity.py b/modules/print_activity.py
index 53a5eb90..19219772 100644
--- a/modules/print_activity.py
+++ b/modules/print_activity.py
@@ -127,5 +127,6 @@ class Module(ModuleManager.BaseModule):
@utils.hook("received.invite")
def invite(self, event):
- self.print_line(event, "%s was invited to %s" % (
- event["user"].nickname, event["target_channel"]))
+ self.print_line(event, "%s invited %s to %s" % (
+ event["user"].nickname, event["target_user"].nickname,
+ event["target_channel"]))