Files @ 88474ec876ed
Branch filter:

Location: website/www/wsgicustom.wsgi

brett
blog: Display tags with dateline.

This hopefully makes it a little clearer which entry the tags apply to.
# 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()