mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-26 04:32:51 +01:00
callbacks: Fix py 3.4 support
This commit is contained in:
parent
d452a7051c
commit
b030a7bb76
@ -1083,8 +1083,9 @@ class NestedCommandsIrcProxy(ReplyIrcProxy):
|
|||||||
chunk = '%s %s' % (chunk, n)
|
chunk = '%s %s' % (chunk, n)
|
||||||
|
|
||||||
if is_instant and not is_first:
|
if is_instant and not is_first:
|
||||||
msgs.append(_makeReply(self, msg, chunk, **{
|
d = replyArgs.copy()
|
||||||
**replyArgs, "prefixNick": False}))
|
d['prefixNick'] = False
|
||||||
|
msgs.append(_makeReply(self, msg, chunk, **d))
|
||||||
else:
|
else:
|
||||||
msgs.append(_makeReply(self, msg, chunk, **replyArgs))
|
msgs.append(_makeReply(self, msg, chunk, **replyArgs))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user