We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c4dd7 commit 7a2b0dfCopy full SHA for 7a2b0df
sploits/tracker/decompile.py
@@ -5,6 +5,6 @@
5
6
with open(sys.argv[1], "rb") as f:
7
raw = f.read()
8
- co2 = marshal.loads(raw)
9
- uncompyle6.code_deparse(co2)
+ co = marshal.loads(raw)
+ uncompyle6.code_deparse(co)
10
print()
0 commit comments