From 38784b9ae60df83ba924d7387b58b6250b67c904 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 10 Mar 2005 05:22:05 +0000 Subject: [PATCH] Plugin needed a little format() love. --- plugins/Plugin/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Plugin/plugin.py b/plugins/Plugin/plugin.py index 9dddc0abe..994041420 100644 --- a/plugins/Plugin/plugin.py +++ b/plugins/Plugin/plugin.py @@ -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):