mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 04:02:46 +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)
|
||||
|
||||
if is_instant and not is_first:
|
||||
msgs.append(_makeReply(self, msg, chunk, **{
|
||||
**replyArgs, "prefixNick": False}))
|
||||
d = replyArgs.copy()
|
||||
d['prefixNick'] = False
|
||||
msgs.append(_makeReply(self, msg, chunk, **d))
|
||||
else:
|
||||
msgs.append(_makeReply(self, msg, chunk, **replyArgs))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user