aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-03-12 10:41:45 +0000
committerGravatar jesopo2019-03-12 10:41:45 +0000
commitdf3075ce2766049b9f72eb8136e82457cce90fb5 (patch)
tree0fca6c4d933f8715782016d7b268b50ca0d3ba1e /modules
parentAdd IRCUser.hostmask() to format nick/user/host in to a hostmask (diff)
signature
Show user hostmask (not just nick) on formatted.join
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 a3f0e2cd..898c864e 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.hostmask(), event["channel"].name)
self._event("join", event["server"], line, event["channel"].name,
channel=event["channel"], user=user)
@utils.hook("received.join")