From 2092fe4134d3938d58a704b254bb1bfa35ff187b Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 7 Feb 2004 23:23:07 +0000 Subject: [PATCH] Fixed the output of Misc.plugin slightly. --- src/Misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Misc.py b/src/Misc.py index fe4e3b027..8f23387f6 100755 --- a/src/Misc.py +++ b/src/Misc.py @@ -305,7 +305,7 @@ class Misc(callbacks.Privmsg): command = callbacks.canonicalName(privmsgs.getArgs(args)) cbs = callbacks.findCallbackForCommand(irc, command) if cbs: - irc.reply(utils.commaAndify([cb.name() for cb in cbs])) + irc.reply(utils.commaAndify([cb.name() for cb in cbs]) + '.') else: irc.error('There is no such command %s' % command)