aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-03-07 18:01:00 +0000
committerGravatar jesopo2019-03-07 18:01:00 +0000
commitc8f5f0b0ad932d93a5bf687531ed6a8ddcc3a5d7 (patch)
tree7beb05010aa51f2519f48633f50307825c84ad67 /modules
parentPrefix 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.py2
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")