diff options
author | Jan Cholasta <jcholast@redhat.com> | 2016-08-24 13:37:30 +0200 |
---|---|---|
committer | David Kupka <dkupka@redhat.com> | 2016-10-24 14:11:08 +0200 |
commit | 0d370a959b6b55f995661b2febe55c379065c4d9 (patch) | |
tree | 6aa1069568e2ef78634712328d84a64c4e0945fd /ipapython/config.py | |
parent | 1077743d90902fc776f837f8486fa7f08b560673 (diff) | |
download | freeipa-0d370a959b6b55f995661b2febe55c379065c4d9.tar.gz freeipa-0d370a959b6b55f995661b2febe55c379065c4d9.tar.xz freeipa-0d370a959b6b55f995661b2febe55c379065c4d9.zip |
pylint: enable the import-error check
Check for import errors with pylint to make sure new python package
dependencies are not overlooked.
https://fedorahosted.org/freeipa/ticket/6418
Reviewed-By: Petr Spacek <pspacek@redhat.com>
Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipapython/config.py')
-rw-r--r-- | ipapython/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ipapython/config.py b/ipapython/config.py index 59e4aa78a..8e5708e6a 100644 --- a/ipapython/config.py +++ b/ipapython/config.py @@ -22,12 +22,14 @@ from copy import copy from dns import resolver, rdatatype from dns.exception import DNSException +# pylint: disable=import-error from six.moves.configparser import SafeConfigParser +from six.moves.urllib.parse import urlsplit +# pylint: enable=import-error from ipapython.dn import DN from ipaplatform.paths import paths import dns.name -from six.moves.urllib.parse import urlsplit import socket |