From d80b7e03a7d1a0f417faae4ebb2202355899cb7e Mon Sep 17 00:00:00 2001 From: "pawnesh.kumar" Date: Thu, 20 Oct 2016 10:31:07 +0530 Subject: [PATCH] Replaced savanna word with mistralclient Change-Id: Ifb12e0974ce88dd5969cebee284e31377c6bce44 --- tools/lintstack.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/lintstack.py b/tools/lintstack.py index 7189ae3a..d3109806 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()