summaryrefslogtreecommitdiff
path: root/web_infrastructure
diff options
context:
space:
mode:
authorLucas David Traverso <lucas6246@gmail.com>2015-04-19 04:39:59 -0300
committerLucas David Traverso <lucas6246@gmail.com>2015-04-19 04:39:59 -0300
commit3b954edab2bf54c710b86d95482548b893d648fa (patch)
tree289f3a28e8493e9a36c38efea3be7621f9b9b271 /web_infrastructure
parentbe89a2f5fcf9ca45c6ab45391f4d4f3b22bd1d4d (diff)
downloadansible-modules-core-3b954edab2bf54c710b86d95482548b893d648fa.tar.gz
django_manage: Use shebang in manage.py instead of hardcode python
Diffstat (limited to 'web_infrastructure')
-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 46ebb2fb..c7214567 100644
--- a/web_infrastructure/django_manage.py
+++ b/web_infrastructure/django_manage.py
@@ -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