summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSergey Vilgelm <sergey@vilgelm.info>2015-07-08 14:42:47 +0300
committerSergey Vilgelm <sergey@vilgelm.info>2015-07-19 23:46:28 +0300
commit889e66eb4923210aa95ba848fb030023ffde1800 (patch)
treeca1cff221de17760ddb01a8f21acf99cbf7cbff6 /tools
parentef7623e2aca5c630c461d4944144b75a6d85b9d7 (diff)
downloadceilometer-889e66eb4923210aa95ba848fb030023ffde1800.tar.gz
Switch to the oslo_utils.fileutils
fileutils is graduated in the oslo.utils library. Remove the openstack.common package as well. Implements: blueprint graduate-fileutils[1] [1] https://blueprints.launchpad.net/oslo-incubator/+spec/graduate-fileutils Depends-On: I51ba9076e1fbc16145ee2311f47b7768c16dcb20 (requirements) Depends-On: I661dd222da6386a7dbcf854958a63e59b13e9ba4 (oslo.utils) Change-Id: I6ba8f492a257096d27cbe83bfd06e53b7aabfa5d
Diffstat (limited to 'tools')
-rwxr-xr-xtools/lintstack.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/lintstack.py b/tools/lintstack.py
index ddea7993..9ac6b439 100755
--- a/tools/lintstack.py
+++ b/tools/lintstack.py
@@ -29,9 +29,7 @@ from six.moves import cStringIO as StringIO # noqa
# These variables will be useful if we will need to skip some pylint checks
ignore_codes = []
ignore_messages = []
-# We ignore all errors in openstack.common because it should be checked
-# elsewhere.
-ignore_modules = ["ceilometer/openstack/common/"]
+ignore_modules = []
KNOWN_PYLINT_EXCEPTIONS_FILE = "tools/pylint_exceptions"