django_manage: Use shebang in manage.py instead of hardcode python

This commit is contained in:
Lucas David Traverso 2015-04-19 04:39:59 -03:00
parent be89a2f5fc
commit 3b954edab2

View file

@ -234,7 +234,7 @@ def main():
_ensure_virtualenv(module)
cmd = "python manage.py %s" % (command, )
cmd = "./manage.py %s" % (command, )
if command in noinput_commands:
cmd = '%s --noinput' % cmd