mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 04:02:46 +01:00
Fix for bug #1203201.
This commit is contained in:
parent
0b848199b5
commit
c5e1f4e561
@ -136,9 +136,7 @@ class Ctcp(callbacks.PluginRegexp):
|
|||||||
L = []
|
L = []
|
||||||
for (reply, nicks) in self.versions.iteritems():
|
for (reply, nicks) in self.versions.iteritems():
|
||||||
if nicks:
|
if nicks:
|
||||||
L.append('%s responded with %s' %
|
L.append(format('%L responded with %q', nicks, reply))
|
||||||
(utils.commaAndify(nicks),
|
|
||||||
utils.quoted(reply)))
|
|
||||||
else:
|
else:
|
||||||
L.append(reply)
|
L.append(reply)
|
||||||
irc.reply(utils.commaAndify(L))
|
irc.reply(utils.commaAndify(L))
|
||||||
|
Loading…
Reference in New Issue
Block a user