Skip to content

Commit

Permalink
fix empty output path handling
Browse files Browse the repository at this point in the history
  • Loading branch information
makigumo committed Jan 12, 2019
1 parent ad79558 commit 433e009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unqar.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __del__(self):
exit(1)

binaryReader = BinaryReader(sys.argv[1])
output_path = ""
output_path = pathlib.Path.cwd()
if len(sys.argv) > 2:
output_path = str(sys.argv[2])

Expand Down

0 comments on commit 433e009

Please sign in to comment.