symposion_app/symposion_project/wsgi.py

11 lines
216 B
Python
Raw Normal View History

2012-02-05 18:53:49 +00:00
from django.core.handlers.wsgi import WSGIHandler
import pinax.env
# setup the environment for Django and Pinax
pinax.env.setup_environ(__file__)
# set application for WSGI processing
application = WSGIHandler()