Move dispatch to the correct place

This commit is contained in:
Roberto Rosario
2012-02-06 16:20:00 -04:00
parent 35bd9a1519
commit 44ca1ccac6

View File

@@ -2,8 +2,6 @@ import os
import sys
import site
from django.core.handlers.wsgi import WSGIHandler
sys.stdout = sys.stderr
#TODO fix properly
@@ -21,4 +19,6 @@ sys.path.insert(0, ve_path)
os.environ['PYTHON_EGG_CACHE'] = '/tmp'
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from django.core.handlers.wsgi import WSGIHandler
application = WSGIHandler()