diff --git a/source/tools/i18n/extractors/__init__.py b/source/tools/i18n/extractors/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/source/tools/i18n/extractors/extractors.py b/source/tools/i18n/i18n_helper/extractors.py similarity index 100% rename from source/tools/i18n/extractors/extractors.py rename to source/tools/i18n/i18n_helper/extractors.py diff --git a/source/tools/i18n/update_templates.py b/source/tools/i18n/update_templates.py index eec7c85429..ba2ac99d42 100755 --- a/source/tools/i18n/update_templates.py +++ b/source/tools/i18n/update_templates.py @@ -80,7 +80,7 @@ def generate_pot(template_settings, root_path): options = rule.get("options", {}) extractor_class = getattr( - import_module("extractors.extractors"), f'{rule["extractor"].title()}Extractor' + import_module("i18n_helper.extractors"), f'{rule["extractor"].title()}Extractor' ) extractor = extractor_class(input_root_path, rule["filemasks"], options) format_flag = None