From eb9b84d1da2ebf2769c8afea60ce02795935cdcd Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sat, 28 May 2011 17:53:05 +0000 Subject: [PATCH] type correction --- lib/core/common.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/core/common.py b/lib/core/common.py index 3acaf9dbc..5ed873b7f 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -519,12 +519,12 @@ def paramToDict(place, parameters=None): if len(conf.testParameter) > 1: 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: parameter = conf.testParameter[0] 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) @@ -532,7 +532,7 @@ def paramToDict(place, parameters=None): for parameter in conf.testParameter: if not testableParameters.has_key(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) return testableParameters