From 28a67828e3ff88824eae97691865bf3d10f7e76d Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 4 May 2021 22:04:05 +0200 Subject: [PATCH] [BUG] invoke: too many arguments Fixes #1543 --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 3065d97243..6eed4c488e 100644 --- a/tasks.py +++ b/tasks.py @@ -65,7 +65,7 @@ def manage(c, cmd, pty=False): cmd - django command to run """ - c.run('cd {path} && python3 manage.py {cmd}'.format( + c.run('cd "{path}" && python3 manage.py {cmd}'.format( path=managePyDir(), cmd=cmd ), pty=pty)