From c7278b5902ffca9d8f1d6d79e97d57f13a2df503 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 16 Sep 2004 18:49:29 +0000 Subject: [PATCH] better output. --- src/Misc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Misc.py b/src/Misc.py index c24c33a5f..c648a639b 100755 --- a/src/Misc.py +++ b/src/Misc.py @@ -407,8 +407,9 @@ class Misc(callbacks.Privmsg): if irc.nested: irc.reply(utils.commaAndify(names)) else: - irc.reply('The %s command is available in %s.' % - (command, plugin)) + irc.reply('The %r command is available in the %s %s.' % + (command, plugin, + utils.pluralize('plugin', len(names)))) else: irc.error('There is no such command %s.' % command)