From 54f2072e97ad8633f9197f7121ce3e7be222ee08 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 17:11:55 +1000 Subject: [PATCH] Fix for 'restore' command (#7348) (#7349) - Fix typo (cherry picked from commit bda237a13fb335c34c5afbb54630c66d82a64cd8) Co-authored-by: Oliver --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index c16059c906..fa2bf31f76 100644 --- a/tasks.py +++ b/tasks.py @@ -408,7 +408,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}'