summaryrefslogtreecommitdiffstats
path: root/ipalib/parameters.py
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2016-08-24 13:37:30 +0200
committerDavid Kupka <dkupka@redhat.com>2016-10-24 14:11:08 +0200
commit0d370a959b6b55f995661b2febe55c379065c4d9 (patch)
tree6aa1069568e2ef78634712328d84a64c4e0945fd /ipalib/parameters.py
parent1077743d90902fc776f837f8486fa7f08b560673 (diff)
downloadfreeipa-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 'ipalib/parameters.py')
-rw-r--r--ipalib/parameters.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipalib/parameters.py b/ipalib/parameters.py
index 1117fbeff..073e1383e 100644
--- a/ipalib/parameters.py
+++ b/ipalib/parameters.py
@@ -103,9 +103,11 @@ import re
import decimal
import base64
import datetime
-from six.moves.xmlrpc_client import MAXINT, MININT
import six
+# pylint: disable=import-error
+from six.moves.xmlrpc_client import MAXINT, MININT
+# pylint: enable=import-error
from ipalib.text import _ as ugettext
from ipalib.base import check_name