Skip to content

Commit

Permalink
main: Fix extract_to_dir call
Browse files Browse the repository at this point in the history
  • Loading branch information
leoetlino committed May 26, 2019
1 parent 87b7d02 commit a6ab6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sarc/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def sarc_extract(args) -> None:
sys.stderr.write("Unknown file format\n")
sys.exit(1)
if target_dir:
s.extract_to_dir(args.sarc, target_dir, print_names=True)
s.extract_to_dir(target_dir, print_names=True)
else:
s.extract(args.sarc, print_names=True)

Expand Down

0 comments on commit a6ab6c9

Please sign in to comment.