From babd6e2bc75d89a5f7e5400b11751c5a52bfb1d1 Mon Sep 17 00:00:00 2001 From: Matthew Harmsen Date: Wed, 18 Mar 2015 09:35:28 -0600 Subject: Fix for pylint 1.3 --> 1.4 Placing 'ldap' on the whitelist was insufficient for the Fedora 22 i686 platform, therefore, ldap was added to 'ignored-modules'. --- dogtag.pylintrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dogtag.pylintrc b/dogtag.pylintrc index cd045f5ec..3ffb1ab71 100644 --- a/dogtag.pylintrc +++ b/dogtag.pylintrc @@ -129,6 +129,11 @@ ignore-imports=no # mixin class is detected if its name ends with "mixin" (case insensitive). ignore-mixin-members=yes +# List of module names for which member attributes should not be checked +# (useful for modules/projects where namespaces are manipulated during runtime +# and thus existing member attributes cannot be deduced by static analysis +ignored-modules=ldap + # List of classes names for which member attributes should not be checked # (useful for classes with attributes dynamically set). ignored-classes=SQLObject -- cgit