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/sysrestore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipapython/sysrestore.py') diff --git a/ipapython/sysrestore.py b/ipapython/sysrestore.py index 93f39fa85..65ef5da89 100644 --- a/ipapython/sysrestore.py +++ b/ipapython/sysrestore.py @@ -26,7 +26,7 @@ import os import os.path import shutil -from ipapython.ipa_log_manager import * +from ipapython.ipa_log_manager import root_logger import random import string -- cgit