mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 11:45:46 +03:00
Minor bug fix
This commit is contained in:
parent
d6606a8f31
commit
8d51b4b63a
|
@ -1376,6 +1376,8 @@ def safeStringFormat(format_, params):
|
|||
|
||||
if isinstance(params, basestring):
|
||||
retVal = retVal.replace("%s", params)
|
||||
elif not isListLike(params):
|
||||
retVal = retVal.replace("%s", str(params))
|
||||
else:
|
||||
count, index = 0, 0
|
||||
while index != -1:
|
||||
|
|
Loading…
Reference in New Issue
Block a user