From bda237a13fb335c34c5afbb54630c66d82a64cd8 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 27 May 2024 17:07:57 +1000 Subject: [PATCH] Fix for 'restore' command (#7348) - Fix typo --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 7c6cebca60..3ef8e47300 100644 --- a/tasks.py +++ b/tasks.py @@ -409,7 +409,7 @@ def restore( ignore_database=False, ): """Restore the database and media files.""" - base_cmd = '--no-input --uncompress -v 2' + base_cmd = '--noinput --uncompress -v 2' if path: base_cmd += f' -I {path}'