From d6f7fef0f8b0fbb4c9661e3bff973b4cb0f779f5 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 31 Mar 2003 07:06:13 +0000 Subject: [PATCH] Changed acronym to use %r for definitions so they get quoted. --- plugins/Http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Http.py b/plugins/Http.py index 562087235..c7f34b42a 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -268,7 +268,7 @@ class Http(callbacks.Privmsg): irc.reply(msg, 'No definitions found.') else: defs=[x[1].strip() for x in defs[1:-1]][:5] - irc.reply(msg, '%s could be %s' % (acronym, ', or '.join(defs))) + irc.reply(msg, '%s could be %r' % (acronym, ', or '.join(defs))) Class = Http # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: