Skip to content

Commit

Permalink
Ubuntu isn't happy with the -Wall command to /usr/bin/env python
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
justinabrahms committed Oct 12, 2010
1 parent 3b853c8 commit 3faad89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env python -Wall
#!/usr/bin/env python

import os
import sys
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)
execute_manager(django_website.settings.www)

0 comments on commit 3faad89

Please sign in to comment.