2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 02:25:38 +00:00

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

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)