Fix bug by normalizing input path

This commit is contained in:
sc0tfree 2020-02-18 11:58:05 -05:00
parent 83981d1b8a
commit 157b429794
1 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,9 @@ def parse_arguments():
args = parser.parse_args()
# Normalize the path
args.directory = os.path.normpath(args.directory)
return args