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

pull/4420/head
Lucas David Traverso 2015-04-19 04:39:59 -03:00 committed by Matt Clay
parent 4d4d911d6e
commit 20aa4c0cea
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,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