From 99b4639172afed21ffd9fe133945b81a213fa28b Mon Sep 17 00:00:00 2001 From: Vincent A Date: Sun, 4 Apr 2021 12:06:10 +0200 Subject: [PATCH] woob.core.woob: rename modules-only package name --- weboob/core/ouiboube.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weboob/core/ouiboube.py b/weboob/core/ouiboube.py index ac0ec3ecd6..5a3f428602 100644 --- a/weboob/core/ouiboube.py +++ b/weboob/core/ouiboube.py @@ -69,12 +69,12 @@ def __init__(self, modules_path=None, storage=None, scheduler=None): if modules_path is None: import pkg_resources - # Package weboob_modules is provided by + # Package woob_modules is provided by # https://gitlab.com/woob/modules # and should be pip-installed separately. # Note that Weboob users should rather install Weboob modules # through https://updates.woob.tech/. - modules_path = pkg_resources.resource_filename('weboob_modules', '') + modules_path = pkg_resources.resource_filename('woob_modules', '') if modules_path: self.modules_loader = ModulesLoader(modules_path, self.VERSION) -- GitLab