aboutsummaryrefslogtreecommitdiff
path: root/modules/format_activity.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-04-16 07:54:07 +0100
committerGravatar jesopo2019-04-16 07:54:07 +0100
commit16083309ef846a436995da66c6abac410e169443 (patch)
tree50b69e5bf829690ba2a3de42f5c5fbe05a68e55a /modules/format_activity.py
parentBoldify sed replacement text (diff)
Add a space between channel name and kick reason in format_activity.py
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 e254525b..25f047b4 100644
--- a/modules/format_activity.py
+++ b/modules/format_activity.py
@@ -145,7 +145,7 @@ class Module(ModuleManager.BaseModule):
def _on_kick(self, event, nickname):
reason = ""
if event["reason"]:
- reason = "(%s)" % event["reason"]
+ reason = " (%s)" % event["reason"]
line = "%s kicked %s from %s%s" % (
event["user"].nickname, nickname, event["channel"].name, reason)
self._event("kick", event["server"], line, event["channel"].name,