diff options
| author | 2019-03-07 18:01:00 +0000 | |
|---|---|---|
| committer | 2019-03-07 18:01:00 +0000 | |
| commit | c8f5f0b0ad932d93a5bf687531ed6a8ddcc3a5d7 (patch) | |
| tree | 7beb05010aa51f2519f48633f50307825c84ad67 /modules | |
| parent | Prefix user-related lines in format_activity with "- " (diff) | |
| signature | ||
"- " should have been inside the string
Diffstat (limited to 'modules')
| -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 a7bd568e..842828ac 100644 --- a/modules/format_activity.py +++ b/modules/format_activity.py @@ -66,7 +66,7 @@ class Module(ModuleManager.BaseModule): event["user"].nickname) def _on_join(self, event, user): - line = - "%s joined %s" % (user.nickname, event["channel"].name) + line = "- %s joined %s" % (user.nickname, event["channel"].name) self._event("join", event["server"], line, event["channel"].name, channel=event["channel"], user=user) @utils.hook("received.join") |
