aboutsummaryrefslogtreecommitdiff
path: root/modules/format_activity.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-03-07 21:44:32 +0000
committerGravatar jesopo2019-03-07 21:44:32 +0000
commitcbd6092ff1b3f1202cdff9352b0ccad60a44b4c7 (patch)
tree214241a5a0fe07a382af09d7f27690dbb6240517 /modules/format_activity.py
parent"- " should have been inside the string (diff)
signature
Send IRCUser object on formatted.quit event
Diffstat (limited to 'modules/format_activity.py')
-rw-r--r--modules/format_activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/format_activity.py b/modules/format_activity.py
index 842828ac..121d3f07 100644
--- a/modules/format_activity.py
+++ b/modules/format_activity.py
@@ -163,7 +163,7 @@ class Module(ModuleManager.BaseModule):
if reason:
reason = " (%s)" % reason
line = "- %s quit%s" % (user.nickname, reason)
- self._event("quit", event["server"], line, None)
+ self._event("quit", event["server"], line, None, user=user)
@utils.hook("received.quit")
def on_quit(self, event):
self._quit(event, event["user"], event["reason"])