summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-05-26 15:04:34 -0400
committerSimo Sorce <simo@redhat.com>2015-05-26 15:05:01 -0400
commit41d2241a038f2b0ddf797cf9a60ec52d1e96d3c7 (patch)
treece8a1571cf0dd8b04109587b68f9472f05aa93ce /Makefile
parentbcffccf4e50d09c4ddb1e47dd41f594f891a95c6 (diff)
downloadcustodia-41d2241a038f2b0ddf797cf9a60ec52d1e96d3c7.tar.gz
custodia-41d2241a038f2b0ddf797cf9a60ec52d1e96d3c7.tar.xz
custodia-41d2241a038f2b0ddf797cf9a60ec52d1e96d3c7.zip
Remove pylint star-args exceptions
Newer pylint version completely removed the star-args warning, including recognizing the exception in the source code. Remove it from all source code to avoid annoyinf pylint errors about unrecognized exceptions, and add a general exception in the pylint makefile invocation, as apparently it is ok there. This will avoid warnings if older versions of pylint are used. Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b6b23ef..f6c0314 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,7 @@ lint:
# Ignore cherrypy class members as they are dynamically added
pylint -d c,r,i,W0613 -r n -f colorized \
--notes= \
+ --disable=star-args \
./custodia
pep8: