Skip to content

Commit

Permalink
fix: missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
jsn-sekoia committed Sep 4, 2024
1 parent e82a940 commit dfbe29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unpacker.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _check_upx(self, packedfile):
stdout=PIPE, stderr=PIPE).communicate()
return (stdout, stderr)

def _fix_p_info(self, packedfile)
def _fix_p_info(self, packedfile):
stream = open(packedfile, 'r+b')
buff = stream.read()
upx_index = buff.find(b'UPX!')
Expand Down

0 comments on commit dfbe29b

Please sign in to comment.