Fix last-minute bug due to kwargs->kwargs1

This commit is contained in:
rocky
2017-12-10 18:00:44 -05:00
parent c787c27901
commit c5b8531ef1
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -590,7 +590,7 @@ def make_function3(self, node, is_lambda, nested=1, codeNode=None):
for n in node:
if n == 'pos_arg':
continue
elif self.version >= 3.4 and not (n.kind in ('kwargs', 'kwarg')):
elif self.version >= 3.4 and not (n.kind in ('kwargs', 'kwargs1', 'kwarg')):
continue
else:
self.preorder(n)