This commit is contained in:
Jeremy Fincher 2005-05-18 04:31:41 +00:00
parent 0b848199b5
commit c5e1f4e561
1 changed files with 1 additions and 3 deletions

View File

@ -136,9 +136,7 @@ class Ctcp(callbacks.PluginRegexp):
L = []
for (reply, nicks) in self.versions.iteritems():
if nicks:
L.append('%s responded with %s' %
(utils.commaAndify(nicks),
utils.quoted(reply)))
L.append(format('%L responded with %q', nicks, reply))
else:
L.append(reply)
irc.reply(utils.commaAndify(L))