plugins/Ctcp: Fix another utils.commaAndify bug.

This commit is contained in:
James Vega 2005-05-19 23:52:53 +00:00
parent 8730832e69
commit 5e07947f74

View File

@ -139,7 +139,7 @@ class Ctcp(callbacks.PluginRegexp):
L.append(format('%L responded with %q', nicks, reply))
else:
L.append(reply)
irc.reply(utils.commaAndify(L))
irc.reply(format('%L', L))
else:
irc.reply('I received no version responses.')
wait = self.registryValue('versionWait')