Files @ 87c68de62a1c
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
news_queryset is what we wanted here, not 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()