From 02e45d43cfd7e8f372d486a8018b13e36958ab55 Mon Sep 17 00:00:00 2001 From: Lucas Meneghel Rodrigues Date: Tue, 26 Mar 2013 11:18:49 -0300 Subject: [PATCH] run_pylint: Ignore error I0011 on quiet runs For quiet runs, telling that we're ignoring some false negatives is not really necessary. Signed-off-by: Lucas Meneghel Rodrigues --- utils/run_pylint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/run_pylint.py b/utils/run_pylint.py index 1c4fb7fd1e..4d76672c3d 100755 --- a/utils/run_pylint.py +++ b/utils/run_pylint.py @@ -10,7 +10,7 @@ sys.exit(1) # Classes of errors we ignore on quiet runs -IGNORED_ERRORS = 'E1002,E1101,E1103,E1120,F0401' +IGNORED_ERRORS = 'E1002,E1101,E1103,E1120,F0401,I0011' # By default, complain about all things LINT_VERBOSE = True