diff options
author | Christian Heimes <cheimes@redhat.com> | 2016-11-23 10:04:43 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-11-25 16:18:22 +0100 |
commit | 38e8719f728e6d54289507fe2c7f79f9272c45c0 (patch) | |
tree | 09b4709a878ae7bb428a0302043d15e20747efed /ipapython/admintool.py | |
parent | 044d887e81d433b43c33b076a21fd1054796786e (diff) | |
download | freeipa-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 'ipapython/admintool.py')
-rw-r--r-- | ipapython/admintool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipapython/admintool.py b/ipapython/admintool.py index ec0e7e079..78bbcec75 100644 --- a/ipapython/admintool.py +++ b/ipapython/admintool.py @@ -25,7 +25,7 @@ Handles common operations like option parsing and logging import sys import os import traceback -from optparse import OptionGroup +from optparse import OptionGroup # pylint: disable=deprecated-module from ipapython import version from ipapython import config |