apache/django.wsgi
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 12 Oct 2009 19:33:02 +0530
changeset 27 87910f9bd6ec
parent 19 eeac221a9a3f
permissions -rwxr-xr-x
Corrected and added registration and activation templates.

import os
import sys

sys.path.append('/home/hg/repos/')
sys.path.append('/home/hg/repos/scipy/')

os.environ['DJANGO_SETTINGS_MODULE'] = 'scipy.settings'

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()