Files @ f518115a3291
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
See if making an outer div here fixes formatting.

This is somewhat of a hack to normalize this to other setups used
elsewhere on the site.
# 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()