summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Core.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-04-16 14:13:54 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-04-16 14:13:54 -0400
commit2875c06a476f9e2b49ca1cccbbcbd494f735a3e3 (patch)
treeecc2546454632981e14d2e1d3478c8cbb969bdb3 /src/lib/Bcfg2/Server/Core.py
parentd990a3446734a9b8bca666f94bdbf8cb3592b856 (diff)
downloadbcfg2-2875c06a476f9e2b49ca1cccbbcbd494f735a3e3.tar.gz
bcfg2-2875c06a476f9e2b49ca1cccbbcbd494f735a3e3.tar.bz2
bcfg2-2875c06a476f9e2b49ca1cccbbcbd494f735a3e3.zip
Core: fixed pylint tests for wildcard imports
Diffstat (limited to 'src/lib/Bcfg2/Server/Core.py')
-rw-r--r--src/lib/Bcfg2/Server/Core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Core.py b/src/lib/Bcfg2/Server/Core.py
index 15dd01c53..61b41b9bc 100644
--- a/src/lib/Bcfg2/Server/Core.py
+++ b/src/lib/Bcfg2/Server/Core.py
@@ -19,8 +19,8 @@ from Bcfg2.Cache import Cache
import Bcfg2.Statistics
from itertools import chain
from Bcfg2.Compat import xmlrpclib # pylint: disable=W0622
-from Bcfg2.Server.Plugin.exceptions import *
-from Bcfg2.Server.Plugin.interfaces import *
+from Bcfg2.Server.Plugin.exceptions import * # pylint: disable=W0401,W0614
+from Bcfg2.Server.Plugin.interfaces import * # pylint: disable=W0401,W0614
from Bcfg2.Server.Plugin import track_statistics
try: