diff options
| author | 2019-03-07 21:44:32 +0000 | |
|---|---|---|
| committer | 2019-03-07 21:44:32 +0000 | |
| commit | cbd6092ff1b3f1202cdff9352b0ccad60a44b4c7 (patch) | |
| tree | 214241a5a0fe07a382af09d7f27690dbb6240517 /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.py | 2 |
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"]) |
