[BUG] invoke: too many arguments

Fixes #1543
This commit is contained in:
Matthias 2021-05-04 22:04:05 +02:00
parent 5d214fc869
commit 28a67828e3

View File

@ -65,7 +65,7 @@ def manage(c, cmd, pty=False):
cmd - django command to run 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(), path=managePyDir(),
cmd=cmd cmd=cmd
), pty=pty) ), pty=pty)