Skip to content

Commit 5b2a7d3

Browse files
Jenkinsopenstack-gerrit
authored andcommitted
Merge "Replaced savanna word with mistralclient"
2 parents 002886b + d80b7e0 commit 5b2a7d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/lintstack.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
# Note(maoy): E1103 is error code related to partial type inference
3131
ignore_codes = ["E1103"]
3232
# Note(maoy): the error message is the pattern of E0202. It should be ignored
33-
# for savanna.tests modules
34-
ignore_messages = ["An attribute affected in savanna.tests"]
33+
# for mistralclient.tests modules
34+
ignore_messages = ["An attribute affected in mistralclient.tests"]
3535
# We ignore all errors in openstack.common because it should be checked
3636
# elsewhere.
37-
ignore_modules = ["savanna/openstack/common/"]
37+
ignore_modules = ["mistralclient/openstack/common/"]
3838

3939
KNOWN_PYLINT_EXCEPTIONS_FILE = "tools/pylint_exceptions"
4040

@@ -129,7 +129,7 @@ def from_file(cls, filename):
129129
def run_pylint():
130130
buff = StringIO.StringIO()
131131
reporter = text.ParseableTextReporter(output=buff)
132-
args = ["--include-ids=y", "-E", "savanna"]
132+
args = ["--include-ids=y", "-E", "mistralclient"]
133133
lint.Run(args, reporter=reporter, exit=False)
134134
val = buff.getvalue()
135135
buff.close()

0 commit comments

Comments
 (0)