Files @ 357aacf99c1a
Branch filter:

Location: website/www/wsgicustom.wsgi

Bradley M. Kuhn
Vizio — For compliance only, note resources are for Vizio

The Resources for Journalists are only related to Vizio, so make that
read that way on compliance pages that *are not* Vizio pages.
#!/usr/bin/env python

import os
import sys

# Work around <https://bugs.python.org/issue7980>
import _strptime

root_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, root_dir)
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()