Added urllib.unquote to foldoc error message.

This commit is contained in:
Jeremy Fincher 2003-06-14 10:40:52 +00:00
parent 73c3b811aa
commit d9399fb304

View File

@ -183,6 +183,7 @@ class Http(callbacks.Privmsg):
if text: if text:
irc.reply(msg, text) irc.reply(msg, text)
else: else:
search = urllib.unquote(search)
s = 'There appears to be no definition for %s.' % search s = 'There appears to be no definition for %s.' % search
irc.reply(msg, s) irc.reply(msg, s)