django.wsgi
author nishanth
Sat, 05 Jun 2010 16:41:18 +0530
branchanoop
changeset 36 e291915aded8
parent 27 48a86d8956f7
permissions -rw-r--r--
python path in wsgi is changed

import os
import sys

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

os.environ['DJANGO_SETTINGS_MODULE'] = 'sage_days.settings_apache'

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