Skip to content

Commit

Permalink
fix forgotten slash
Browse files Browse the repository at this point in the history
  • Loading branch information
noraj authored May 19, 2019
1 parent 9296d54 commit a8d92a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chankro.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
if (os.path.isabs(args.out)):
outfile = open(args.out, "w") # absolute path provided
else:
outfile = open(os.getcwd() + args.out, "w") # relative path provided
outfile = open(os.getcwd() + '/' + args.out, "w") # relative path provided
except:
print "[!] Error: file could not be created"
exit()
Expand Down

0 comments on commit a8d92a7

Please sign in to comment.