Skip to content

Commit

Permalink
Merge pull request #96 from kapilgain/dev
Browse files Browse the repository at this point in the history
Fixes #95: Correct the variable name
  • Loading branch information
jackmcbarn authored Aug 15, 2020
2 parents d1f8934 + f4cc4da commit 79f1281
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions decompiler/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ def reconstruct_paraminfo(paraminfo):
if not paraminfo.extrapos:
rv.append(sep())
rv.append("*")
for param in nameonly:
for parameter in nameonly:
rv.append(sep())
rv.append(parameter[0])
if param[1] is not None:
if parameter[1] is not None:
rv.append("=%s" % parameter[1])
if paraminfo.extrakw:
rv.append(sep())
Expand Down

0 comments on commit 79f1281

Please sign in to comment.