From bf737d510fd18fde647a7e0cef0a5d4ef2d39755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eli=C3=A1n=20Hanisch?= Date: Mon, 15 Mar 2010 14:32:09 -0300 Subject: [PATCH] tweak priv message so it displays the full command needed --- Bantracker/plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bantracker/plugin.py b/Bantracker/plugin.py index 227ea6b..a8d5031 100644 --- a/Bantracker/plugin.py +++ b/Bantracker/plugin.py @@ -344,7 +344,8 @@ class Bantracker(callbacks.Plugin): else: type = 'removal' # send msg - s = "Please comment on the %s of %s in %s with the ID %s" %(type, mask, channel, ban.id) + s = "Please comment on the %s of %s in %s, use: %scomment %s " \ + %(type, mask, channel, conf.supybot.reply.whenAddressedBy.chars()[0], ban.id) irc.reply(s, to=ban.who, private=True) def doLog(self, irc, channel, s):