From 41db0ff60d19fbfee6f85883f647bb766e5a9fb5 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 18 Aug 2021 14:58:16 +1000 Subject: [PATCH] Need to specify python3 --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 9088efb12f..7ebdd17480 100644 --- a/tasks.py +++ b/tasks.py @@ -188,7 +188,7 @@ def translate(c): path = os.path.join('InvenTree', 'script', 'translation_stats.py') - c.run(f'python {path}') + c.run(f'python3 {path}') @task(pre=[install, migrate, translate, clean_settings])