mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 01:56:36 +03:00
type correction
This commit is contained in:
parent
03ef53f00a
commit
eb9b84d1da
|
@ -519,12 +519,12 @@ def paramToDict(place, parameters=None):
|
||||||
|
|
||||||
if len(conf.testParameter) > 1:
|
if len(conf.testParameter) > 1:
|
||||||
warnMsg = "the testable parameters '%s' " % paramStr
|
warnMsg = "the testable parameters '%s' " % paramStr
|
||||||
warnMsg += "you provided are not into the %s" % place
|
warnMsg += "you provided are not inside the %s" % place
|
||||||
else:
|
else:
|
||||||
parameter = conf.testParameter[0]
|
parameter = conf.testParameter[0]
|
||||||
|
|
||||||
warnMsg = "the testable parameter '%s' " % paramStr
|
warnMsg = "the testable parameter '%s' " % paramStr
|
||||||
warnMsg += "you provided is not into the %s" % place
|
warnMsg += "you provided is not inside the %s" % place
|
||||||
|
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
@ -532,7 +532,7 @@ def paramToDict(place, parameters=None):
|
||||||
for parameter in conf.testParameter:
|
for parameter in conf.testParameter:
|
||||||
if not testableParameters.has_key(parameter):
|
if not testableParameters.has_key(parameter):
|
||||||
warnMsg = "the testable parameter '%s' " % parameter
|
warnMsg = "the testable parameter '%s' " % parameter
|
||||||
warnMsg += "you provided is not into the %s" % place
|
warnMsg += "you provided is not inside the %s" % place
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return testableParameters
|
return testableParameters
|
||||||
|
|
Loading…
Reference in New Issue
Block a user