From dd28e90f183972cc2a395094ce3e3f72e861953f Mon Sep 17 00:00:00 2001 From: "Chris St. Pierre" Date: Fri, 21 Sep 2012 13:55:05 -0400 Subject: run pylint for errors on almost everything, full runs on some selected stuff --- src/lib/Bcfg2/Server/Plugin/__init__.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/lib/Bcfg2/Server/Plugin/__init__.py') diff --git a/src/lib/Bcfg2/Server/Plugin/__init__.py b/src/lib/Bcfg2/Server/Plugin/__init__.py index b76dbe7a0..ed1282ba0 100644 --- a/src/lib/Bcfg2/Server/Plugin/__init__.py +++ b/src/lib/Bcfg2/Server/Plugin/__init__.py @@ -16,7 +16,8 @@ import os import sys sys.path.append(os.path.dirname(__file__)) -from base import * -from interfaces import * -from helpers import * -from exceptions import * +# pylint: disable=W0401 +from Bcfg2.Server.Plugin.base import * +from Bcfg2.Server.Plugin.interfaces import * +from Bcfg2.Server.Plugin.helpers import * +from Bcfg2.Server.Plugin.exceptions import * -- cgit v1.2.3-1-g7c22