Files @ 86e1646f8f31
Branch filter:

Location: website/www/wsgicustom.wsgi

Tom Marble
Fixed "(page of)" thing at the top of news
# 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()