Removed spurious quoting from acronym.

This commit is contained in:
Jeremy Fincher 2003-06-02 07:21:35 +00:00
parent ec8011347c
commit 800efee2ea

View File

@ -324,8 +324,8 @@ class Http(callbacks.Privmsg):
irc.reply(msg, 'No definitions found.') irc.reply(msg, 'No definitions found.')
else: else:
s = ircutils.privmsgPayload([repr(s.strip()) for s in defs[1:-1]], s = ircutils.privmsgPayload([repr(s.strip()) for s in defs[1:-1]],
'," or "') ', or ')
irc.reply(msg, '%s could be "%s"' % (acronym, s)) irc.reply(msg, '%s could be %s' % (acronym, s))
_netcraftre = re.compile(r'whatos text -->(.*?)<a href="/up/acc', re.S) _netcraftre = re.compile(r'whatos text -->(.*?)<a href="/up/acc', re.S)
def netcraft(self, irc, msg, args): def netcraft(self, irc, msg, args):