mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
Fixes #3534
This commit is contained in:
parent
aecaa27839
commit
196ac25284
4 changed files with 12 additions and 8 deletions
|
|
@ -1810,6 +1810,10 @@ def normalizePath(filepath):
|
|||
return retVal
|
||||
|
||||
def safeFilepathEncode(filepath):
|
||||
"""
|
||||
Returns filepath in (ASCII) format acceptable for OS handling (e.g. reading)
|
||||
"""
|
||||
|
||||
retVal = filepath
|
||||
|
||||
if filepath and isinstance(filepath, unicode):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue