diff --git a/tools/lintstack.py b/tools/lintstack.py index 433e4c43..e5fcca13 100755 --- a/tools/lintstack.py +++ b/tools/lintstack.py @@ -30,11 +30,11 @@ from pylint.reporters import text # Note(maoy): E1103 is error code related to partial type inference ignore_codes = ["E1103"] # Note(maoy): the error message is the pattern of E0202. It should be ignored -# for savanna.tests modules -ignore_messages = ["An attribute affected in savanna.tests"] +# for mistralclient.tests modules +ignore_messages = ["An attribute affected in mistralclient.tests"] # We ignore all errors in openstack.common because it should be checked # elsewhere. -ignore_modules = ["savanna/openstack/common/"] +ignore_modules = ["mistralclient/openstack/common/"] KNOWN_PYLINT_EXCEPTIONS_FILE = "tools/pylint_exceptions" @@ -129,7 +129,7 @@ class ErrorKeys(object): def run_pylint(): buff = StringIO.StringIO() reporter = text.ParseableTextReporter(output=buff) - args = ["--include-ids=y", "-E", "savanna"] + args = ["--include-ids=y", "-E", "mistralclient"] lint.Run(args, reporter=reporter, exit=False) val = buff.getvalue() buff.close()