Merge pull request #1165 from ludat/devel
django_manage: Use shebang in manage.py instead of hardcoded "python"
This commit is contained in:
commit
549bbc7ee7
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ def main():
|
||||||
|
|
||||||
_ensure_virtualenv(module)
|
_ensure_virtualenv(module)
|
||||||
|
|
||||||
cmd = "python manage.py %s" % (command, )
|
cmd = "./manage.py %s" % (command, )
|
||||||
|
|
||||||
if command in noinput_commands:
|
if command in noinput_commands:
|
||||||
cmd = '%s --noinput' % cmd
|
cmd = '%s --noinput' % cmd
|
||||||
|
|
Loading…
Reference in a new issue