aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/format_activity.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/format_activity.py b/modules/format_activity.py
index 980d8e6d..4cdfe08a 100644
--- a/modules/format_activity.py
+++ b/modules/format_activity.py
@@ -84,7 +84,9 @@ class Module(ModuleManager.BaseModule):
def _on_join(self, event, user):
nickname = self._colorize(user.nickname)
hostmask = "%s!%s" % (nickname, user.userhost())
- line = "- %s joined %s" % (hostmask, event["channel"].name)
+
+ line = "- %s (%s) joined %s" % (nickname, user.userhost(),
+ event["channel"].name)
minimal_line = "%s joined %s" % (nickname, event["channel"].name)
self._event("join", event["server"], line, event["channel"].name,