type correction

This commit is contained in:
Miroslav Stampar 2011-05-28 17:53:05 +00:00
parent 03ef53f00a
commit eb9b84d1da

View File

@ -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