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>
This commit is contained in:
Jan Cholasta
2016-08-24 13:37:30 +02:00
committed by David Kupka
parent 1077743d90
commit 0d370a959b
30 changed files with 76 additions and 25 deletions

View File

@@ -25,7 +25,10 @@ from __future__ import print_function
import operator
import re
from urllib.request import urlopen # pylint: disable=no-name-in-module
# pylint: disable=import-error,no-name-in-module
from urllib.request import urlopen
# pylint: enable=import-error,no-name-in-module
SOURCE = "https://git.fedorahosted.org/cgit/mod_nss.git/plain/nss_engine_cipher.c"