summaryrefslogtreecommitdiff
path: root/manage.py
diff options
context:
space:
mode:
authorJustin Lilly <justin@justinlilly.com>2010-10-11 23:20:03 -0400
committerJustin Lilly <justin@justinlilly.com>2010-10-11 23:20:03 -0400
commit3faad896a4a1b5f9752e031bf7fd662ea6505767 (patch)
tree8b11d28cfbf22057e12837560ff1df13e6a84328 /manage.py
parent3b853c85f7a7924a25cfbeb766f2d0c14a10cfaa (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-xmanage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/manage.py b/manage.py
index 75db872a..58082497 100755
--- a/manage.py
+++ b/manage.py
@@ -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)