Skip to content

Commit

Permalink
Fixes #95: Correct the variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
kapilgain committed Aug 15, 2020
1 parent d1f8934 commit f4cc4da
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 f4cc4da

Please sign in to comment.