Files @ 31c6c9ed33ea
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Form should be singular here.

This was likely a bad cut-and-paste from the years where we filed Form
990-T.
# 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()