From c98a25d6a2bd3815e2560b76b48c9acf4e3cd45e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 3 Sep 2003 12:21:56 +0000 Subject: [PATCH] Oops, forgot the '% word' --- plugins/FunCommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FunCommands.py b/plugins/FunCommands.py index e80ebc525..fdefb12eb 100644 --- a/plugins/FunCommands.py +++ b/plugins/FunCommands.py @@ -807,7 +807,7 @@ class FunCommands(callbacks.Privmsg): conn = dictclient.Connection('dict.org') definitions = conn.define('*', word) if not definitions: - irc.reply(msg, 'No definition for %r could be found.') + irc.reply(msg, 'No definition for %r could be found.' % word) return L = [] utils.sortBy(lambda d: len(d.getdefstr()), definitions)