mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-09 09:52:35 +01:00
Minor bug fix
This commit is contained in:
parent
d6606a8f31
commit
8d51b4b63a
1 changed files with 2 additions and 0 deletions
|
|
@ -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 a new issue