Merge pull request #1544 from matmair/matmair/issue1543

[BUG] invoke: too many arguments
This commit is contained in:
Oliver 2021-05-05 09:18:56 +10:00 committed by GitHub
commit 6bf4887284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)