diff options
author | Lucas David Traverso <lucas6246@gmail.com> | 2015-04-19 04:39:59 -0300 |
---|---|---|
committer | Lucas David Traverso <lucas6246@gmail.com> | 2015-04-19 04:39:59 -0300 |
commit | 3b954edab2bf54c710b86d95482548b893d648fa (patch) | |
tree | 289f3a28e8493e9a36c38efea3be7621f9b9b271 /web_infrastructure | |
parent | be89a2f5fcf9ca45c6ab45391f4d4f3b22bd1d4d (diff) | |
download | ansible-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.py | 2 |
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 |