From 3b954edab2bf54c710b86d95482548b893d648fa Mon Sep 17 00:00:00 2001 From: Lucas David Traverso Date: Sun, 19 Apr 2015 04:39:59 -0300 Subject: [PATCH] django_manage: Use shebang in manage.py instead of hardcode python --- web_infrastructure/django_manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_infrastructure/django_manage.py b/web_infrastructure/django_manage.py index 46ebb2fb8f1..c721456715f 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