Skip to content

Commit 7a2b0df

Browse files
committed
[tracker] decompile.py rename variable
1 parent a2c4dd7 commit 7a2b0df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sploits/tracker/decompile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
with open(sys.argv[1], "rb") as f:
77
raw = f.read()
8-
co2 = marshal.loads(raw)
9-
uncompyle6.code_deparse(co2)
8+
co = marshal.loads(raw)
9+
uncompyle6.code_deparse(co)
1010
print()

0 commit comments

Comments
 (0)