From d6dfdb25c4e8be31d77ba8db7c3499e3f10e0c4b Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 25 Feb 2008 16:48:47 -0500 Subject: Pushing changes as part of certmaster split --- certmaster/logger.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'certmaster/logger.py') diff --git a/certmaster/logger.py b/certmaster/logger.py index bd35652..b2d14ed 100755 --- a/certmaster/logger.py +++ b/certmaster/logger.py @@ -14,8 +14,8 @@ import logging -from certmaster.config import read_config -from certmaster.commonconfig import CertmasterConfig +from config import read_config +from commonconfig import CMConfig # from the comments in http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66531 @@ -33,7 +33,7 @@ class Logger(Singleton): def __init__(self, logfilepath ="/var/log/certmaster/certmaster.log"): config_file = '/etc/certmaster/minion.conf' - self.config = read_config(config_file, CertMasterConfig) + self.config = read_config(config_file, CMConfig) self.loglevel = logging._levelNames[self.config.log_level] self._setup_logging() if self._no_handlers: -- cgit