Files @ 49c5bca7430b
Branch filter:

Location: website/www/wsgicustom.wsgi

tbm
Remove footnote about t-shirt shipment

Remove footnote since t-shirts are being shipped already.
# 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()