Files @ 956945ff2622
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Just wrap the whole thing in the <p>.

I don't know why we needed that subbox anyway.

Previous commit definitely did not work.
# wsgicustom.py

import os
import sys

sys.path = ['/var/www'] + sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()