Fix the uwsgi startup scripts and config

This commit is contained in:
2011-03-15 12:09:55 +00:00
parent 181d00e137
commit 9d91a9c616
2 changed files with 2 additions and 2 deletions

View File

@@ -2,6 +2,6 @@ import sys
import os
import django.core.handlers.wsgi
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "../")))
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "app")))
os.environ['DJANGO_SETTINGS_MODULE'] = 'app.settings'
application = django.core.handlers.wsgi.WSGIHandler()