Files @ 6f06967a3034
Branch filter:

Location: website/www/wsgicustom.wsgi

brett
frontpage: Reduce the two-column width split to 67em.

This brings the columns from a target width of about 60 characters to
about 52.
# 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()