mirror of
https://github.com/lcdr/utils.git
synced 2024-08-30 17:32:16 +00:00
Fixed a bug in decompress_sd0
This commit is contained in:
parent
17383b7f8b
commit
aca5f16e28
@ -23,7 +23,7 @@ if __name__ == "__main__":
|
||||
args.out_path = filename+"_decompressed"+ext
|
||||
|
||||
with open(args.in_path, "rb") as file:
|
||||
data = in_file.read()
|
||||
data = file.read()
|
||||
|
||||
with open(args.out_path, "wb") as file:
|
||||
file.write(decompress(data))
|
||||
|
Loading…
Reference in New Issue
Block a user