aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-10-31 15:51:24 +0000
committerGravatar jesopo2019-10-31 15:51:24 +0000
commit307a767d22be9cc785b1b43951578ac293d805b5 (patch)
tree3149a2182b56a40769ae519f4948b8d5c3c642c3
parentinclude CHGHOST lines in channel_log logs (diff)
signature
'changed host (_@_)' -> 'changed host to _@_'
-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 54a3b0c7..3bf921b4 100644
--- a/modules/format_activity.py
+++ b/modules/format_activity.py
@@ -86,7 +86,7 @@ class Module(ModuleManager.BaseModule):
@utils.hook("received.chghost")
def _on_chghost(self, event):
- line_minimal = "%s changed host (%s@%s)" % (event["user"].nickname,
+ line_minimal = "%s changed host to %s@%s" % (event["user"].nickname,
event["username"], event["hostname"])
line = "- %s" % line_minimal
self._event("chghost", event["server"], line, None, user=event["user"],