Skip to content

Commit

Permalink
Fix #233: python3 porting residue in deobfuscate.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CensoredUsername committed Jul 29, 2024
1 parent 8d3a464 commit 872e61c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deobfuscate.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def read_ast(f, context):
try:
data, stmts, d = try_decrypt_section(raw_data)
except ValueError as e:
diagnosis.append(e.message)
diagnosis.append("\n".join(e.args))
else:
diagnosis.extend(d)
context.log("\n".join(diagnosis))
Expand Down

0 comments on commit 872e61c

Please sign in to comment.