aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/hostmask_tracking.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/hostmask_tracking.py b/modules/hostmask_tracking.py
index 05981e5b..3d972fa3 100644
--- a/modules/hostmask_tracking.py
+++ b/modules/hostmask_tracking.py
@@ -30,7 +30,7 @@ class Module(ModuleManager.BaseModule):
nicknames.add(nickname)
if nicknames:
- event["stdout"].write("%s: %s" %
- (hostmask_str, ", ".join(sorted(nicknames))))
+ event["stdout"].write("%s (%d): %s" %
+ (hostmask_str, len(nicknames), ", ".join(sorted(nicknames))))
else:
event["stderr"].write("Hostmask not found")