1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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 committed by Matt Clay
parent 4d4d911d6e
commit 20aa4c0cea

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