This commit is contained in:
Bryson Shepard 2024-03-03 23:17:49 -06:00
parent d314c0fd07
commit 753630e651
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -160,3 +160,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
reference/
test-ext/

2
.vscode/launch.json vendored
View File

@ -10,7 +10,7 @@
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": "${command:pickArgs}"
"args": "${command:pickArgs} ./test-files/nopw/thecreepingvine-com-20240303-205009-d0gapb.wpress ./test-ext"
}
]
}

View File

@ -21,7 +21,7 @@ if __name__ == '__main__':
try:
if os.path.isfile(args.source):
unpacker.Ai1wmUnpacker(args.target).unpack(args.source)
unpacker.Ai1wmUnpacker().unpack(args.source, args.target)
except Ai1wmError as e:
print(e)
sys.exit(-1)