diff options
| author | 2019-10-31 15:51:24 +0000 | |
|---|---|---|
| committer | 2019-10-31 15:51:24 +0000 | |
| commit | 307a767d22be9cc785b1b43951578ac293d805b5 (patch) | |
| tree | 3149a2182b56a40769ae519f4948b8d5c3c642c3 /modules/format_activity.py | |
| parent | include CHGHOST lines in channel_log logs (diff) | |
| signature | ||
'changed host (_@_)' -> 'changed host to _@_'
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 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"], |
