diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/manage_translations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/manage_translations.py b/scripts/manage_translations.py index bc569fbd0a..cea23f8275 100644 --- a/scripts/manage_translations.py +++ b/scripts/manage_translations.py @@ -235,13 +235,13 @@ def fetch(resources=None, languages=None): ] # Transifex pull if languages is None: - run(cmd + ["--all"]) + run([*cmd, "--all"]) target_langs = sorted( d for d in os.listdir(dir_) if not d.startswith("_") and d != "en" ) else: for lang in languages: - run(cmd + ["-l", lang]) + run([*cmd, "-l", lang]) target_langs = languages target_langs = [LANG_OVERRIDES.get(d, d) for d in target_langs] |
