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 = {}