diff options
| author | Justin Lilly <justin@justinlilly.com> | 2010-10-11 23:20:03 -0400 |
|---|---|---|
| committer | Justin Lilly <justin@justinlilly.com> | 2010-10-11 23:20:03 -0400 |
| commit | 3faad896a4a1b5f9752e031bf7fd662ea6505767 (patch) | |
| tree | 8b11d28cfbf22057e12837560ff1df13e6a84328 /manage.py | |
| parent | 3b853c85f7a7924a25cfbeb766f2d0c14a10cfaa (diff) | |
Ubuntu isn't happy with the -Wall command to /usr/bin/env python
Returns no such file or directory. I think this may have to do with passing arguments
to /usr/bin/env, as it is interpreting the arguments for itself, not for python.
Providing a -- in between didn't help things either.
Diffstat (limited to 'manage.py')
| -rwxr-xr-x | manage.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -#!/usr/bin/env python -Wall +#!/usr/bin/env python import os import sys @@ -6,4 +6,4 @@ sys.path.append(os.path.abspath(os.path.dirname(__file__))) import django_website.settings.www from django.core.management import execute_manager -execute_manager(django_website.settings.www)
\ No newline at end of file +execute_manager(django_website.settings.www) |
