mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
Fixes #4363
This commit is contained in:
parent
15225668d0
commit
210a4c3a0a
2 changed files with 2 additions and 2 deletions
|
|
@ -1529,7 +1529,7 @@ def _createHomeDirectories():
|
|||
return
|
||||
|
||||
for context in ("output", "history"):
|
||||
directory = paths["SQLMAP_%s_PATH" % context.upper()]
|
||||
directory = paths["SQLMAP_%s_PATH" % getUnicode(context).upper()] # NOTE: https://github.com/sqlmapproject/sqlmap/issues/4363
|
||||
try:
|
||||
if not os.path.isdir(directory):
|
||||
os.makedirs(directory)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue