From ae4b7cd23be01e92058d4f6343b7bf2b176b307c Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Sun, 11 Jul 2010 02:13:45 +0200 Subject: [PATCH] s/frontend/application/ --- weboob/tools/config/iniconfig.py | 4 ++-- weboob/tools/config/yamlconfig.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/weboob/tools/config/iniconfig.py b/weboob/tools/config/iniconfig.py index 76da330f..61daef7f 100644 --- a/weboob/tools/config/iniconfig.py +++ b/weboob/tools/config/iniconfig.py @@ -50,10 +50,10 @@ class INIConfig(IConfig): for section in self.config.sections(): self.values = load_section(section) self.values.update(self.config.items('DEFAULT')) - logging.debug(u'Frontend configuration file loaded: %s.' % self.path) + logging.debug(u'Application configuration file loaded: %s.' % self.path) else: self.save() - logging.debug(u'Frontend configuration file created with default values: %s. ' + logging.debug(u'Application configuration file created with default values: %s. ' 'Please customize it.' % self.path) return self.values diff --git a/weboob/tools/config/yamlconfig.py b/weboob/tools/config/yamlconfig.py index da12c166..e456bf76 100644 --- a/weboob/tools/config/yamlconfig.py +++ b/weboob/tools/config/yamlconfig.py @@ -40,10 +40,10 @@ class YamlConfig(IConfig): try: with open(self.path, 'r') as f: self.values = yaml.load(f) - logging.debug(u'Frontend configuration file loaded: %s.' % self.path) + logging.debug(u'Application configuration file loaded: %s.' % self.path) except IOError: self.save() - logging.debug(u'Frontend configuration file created with default values: %s. Please customize it.' % self.path) + logging.debug(u'Application configuration file created with default values: %s. Please customize it.' % self.path) if self.values is None: self.values = {}