From 8bf0cba30069be3b47d216f9ee5ad662fae9f7de Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Thu, 18 Sep 2014 15:20:26 +0200 Subject: [PATCH] core: Use the new vocabulary --- weboob/core/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/core/modules.py b/weboob/core/modules.py index 93582269..de149591 100644 --- a/weboob/core/modules.py +++ b/weboob/core/modules.py @@ -95,7 +95,7 @@ class Module(object): def create_instance(self, weboob, instance_name, config, storage): backend_instance = self.klass(weboob, instance_name, config, storage, self.logger) - self.logger.debug(u'Created backend instance "%s" for backend "%s"' % (instance_name, self.name)) + self.logger.debug(u'Created backend "%s" for module "%s"' % (instance_name, self.name)) return backend_instance