summaryrefslogtreecommitdiff
path: root/web_infrastructure/django_manage.py
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2015-07-04 15:56:12 -0400
committerBrian Coca <bcoca@ansible.com>2015-07-04 15:56:12 -0400
commit549bbc7ee781e9f1676253322012733ab1bd2879 (patch)
treec97d7c49fb174969a460e32757da17d99488fafc /web_infrastructure/django_manage.py
parent51b6b725cc70bc9ee4c0b488b85471e66c594c35 (diff)
parent3b954edab2bf54c710b86d95482548b893d648fa (diff)
downloadansible-modules-core-549bbc7ee781e9f1676253322012733ab1bd2879.tar.gz
Merge pull request #1165 from ludat/devel
django_manage: Use shebang in manage.py instead of hardcoded "python"
Diffstat (limited to 'web_infrastructure/django_manage.py')
-rw-r--r--web_infrastructure/django_manage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/web_infrastructure/django_manage.py b/web_infrastructure/django_manage.py
index 17b0534d..201cd083 100644
--- a/web_infrastructure/django_manage.py
+++ b/web_infrastructure/django_manage.py
@@ -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