diff options
| author | 2020-01-11 22:28:46 +0000 | |
|---|---|---|
| committer | 2020-01-11 22:28:46 +0000 | |
| commit | 70d405ced6c82a0765007dafde4cd4271056acc3 (patch) | |
| tree | 26734e816766c6eb3098b4085ecd97ad460fbdf7 /modules | |
| parent | show userhost as well as nickname in !maskfind output (diff) | |
| signature | ||
boldify nickname in !maskfind output so it stands out
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/hostmask_tracking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/hostmask_tracking.py b/modules/hostmask_tracking.py index 07d410b7..8a475af2 100644 --- a/modules/hostmask_tracking.py +++ b/modules/hostmask_tracking.py @@ -34,7 +34,7 @@ class Module(ModuleManager.BaseModule): if nicknames: outs = [] for nickname, userhost in sorted(nicknames): - outs.append("%s (%s)" % (nickname, userhost)) + outs.append("%s (%s)" % (utils.irc.bold(nickname), userhost)) event["stdout"].write("%s (%d/%d): %s" % (hostmask_str, len(nicknames), searched, ", ".join(outs))) else: |
