Files @ 11af508b9947
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Merge branch 'master' from gitorious.

I made some changes before a pull which are herein merged.
# 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()