summaryrefslogtreecommitdiffstats
path: root/makeapi
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2016-11-23 10:04:43 +0100
committerMartin Basti <mbasti@redhat.com>2016-11-25 16:18:22 +0100
commit38e8719f728e6d54289507fe2c7f79f9272c45c0 (patch)
tree09b4709a878ae7bb428a0302043d15e20747efed /makeapi
parent044d887e81d433b43c33b076a21fd1054796786e (diff)
downloadfreeipa-38e8719f728e6d54289507fe2c7f79f9272c45c0.tar.gz
freeipa-38e8719f728e6d54289507fe2c7f79f9272c45c0.tar.xz
freeipa-38e8719f728e6d54289507fe2c7f79f9272c45c0.zip
Python3 pylint fixes
Sprinkle 'pylint disable' comments over the code base to silence a bunch of pylint warnings on Python 3. All silenced warnings are harmless and not bugs. https://fedorahosted.org/freeipa/ticket/4985 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'makeapi')
-rwxr-xr-xmakeapi2
1 files changed, 1 insertions, 1 deletions
diff --git a/makeapi b/makeapi
index a02a491a4..d0a72954b 100755
--- a/makeapi
+++ b/makeapi
@@ -86,7 +86,7 @@ OUTPUT_IGNORED_ATTRIBUTES = (
)
def parse_options():
- from optparse import OptionParser
+ from optparse import OptionParser # pylint: disable=deprecated-module
parser = OptionParser()
parser.add_option("--validate", dest="validate", action="store_true",