Fixed the output of Misc.plugin slightly.

This commit is contained in:
Jeremy Fincher 2004-02-07 23:23:07 +00:00
parent 07e6482f11
commit 2092fe4134

View File

@ -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)