From e1192ebd975bc17aa600030eecbaed6660dc7733 Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Wed, 16 Dec 2015 19:04:20 +0100 Subject: Remove wildcard imports Wildcard imports should not be used. Check for wildcard imports has been enabled in pylint. Pylint note: options 'wildcard-import' causes too much false positive results, so instead it I used 'unused-wildcard-import' option which has almost the same effect. Reviewed-By: Jan Cholasta --- ipapython/ipautil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipapython/ipautil.py') diff --git a/ipapython/ipautil.py b/ipapython/ipautil.py index a0e34e298..7949bdf05 100644 --- a/ipapython/ipautil.py +++ b/ipapython/ipautil.py @@ -46,7 +46,7 @@ import six from six.moves import input from six.moves import urllib -from ipapython.ipa_log_manager import * +from ipapython.ipa_log_manager import root_logger from ipapython import config from ipaplatform.paths import paths from ipapython.dn import DN -- cgit