From 26cd91046e4701cc86b3ccf3fa21db623eee875f Mon Sep 17 00:00:00 2001 From: rocky Date: Mon, 1 May 2017 05:26:55 -0400 Subject: [PATCH] Remove extra unpack *. Issue #98 --- uncompyle6/semantics/pysource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uncompyle6/semantics/pysource.py b/uncompyle6/semantics/pysource.py index 3ba751cd..8b2fcb51 100644 --- a/uncompyle6/semantics/pysource.py +++ b/uncompyle6/semantics/pysource.py @@ -1554,7 +1554,7 @@ class SourceWalker(GenericASTTraversal, object): elif lastnodetype.startswith('BUILD_SET'): self.write('{'); endchar = '}' elif lastnodetype.startswith('BUILD_MAP_UNPACK'): - self.write('{**'); endchar = '}' + self.write('{*'); endchar = '}' elif lastnodetype.startswith('ROT_TWO'): self.write('('); endchar = ')' else: