removing temp fix for invoke error

This commit is contained in:
Matthias 2021-05-04 23:47:21 +02:00
parent 7fa235282b
commit 251603b69b

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)