From 98bbf7caee9dcb63f9a74e58321ae1bd2d5bad6b Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Tue, 30 Sep 2014 22:15:46 +0200 Subject: [PATCH] update the WSGI script for django 1.7 --- mumble-django.wsgi | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mumble-django.wsgi b/mumble-django.wsgi index 5bd1322..294f0d8 100644 --- a/mumble-django.wsgi +++ b/mumble-django.wsgi @@ -25,6 +25,5 @@ os.environ['DJANGO_SETTINGS_MODULE'] = 'pyweb.settings' # WSGI handler -import django.core.handlers.wsgi -application = django.core.handlers.wsgi.WSGIHandler() - +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application()