Files @ 00995bff4d0c
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Fix cut and paste error from documentation

This is trying to build a pagination of a news queryset.

HT tmarble for pointing this out.
# 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()