Plugin needed a little format() love.

This commit is contained in:
James Vega 2005-03-10 05:22:05 +00:00
parent 606e92a47f
commit 38784b9ae6
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class Plugin(callbacks.Plugin):
irc.reply(format('The %q command is available in the %L %s.',
command, L, plugin))
else:
irc.error('There is no command %q.', command)
irc.error(format('There is no command %q.', command))
plugin = wrap(plugin, [many('something')])
def author(self, irc, msg, args, cb):