summaryrefslogtreecommitdiff
path: root/archweb.wsgi
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-10-02 20:52:06 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-10-02 20:52:06 -0400
commitdceadbebbe0b196278573ed294be8c631d45ecef (patch)
tree5274fc4e0397a705dcf1d488074bea9503b3f2c7 /archweb.wsgi
parent724f8c309c97aa9af7f963687342e8f37e682204 (diff)
parent355087ebe2e3fbd5f860e4655888a89d9df52e34 (diff)
Merge branch 'master-nomake'
Diffstat (limited to 'archweb.wsgi')
-rw-r--r--archweb.wsgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/archweb.wsgi b/archweb.wsgi
index f8de2b49..a0d969e7 100644
--- a/archweb.wsgi
+++ b/archweb.wsgi
@@ -30,8 +30,8 @@ try:
except ImportError:
pass
-import django.core.handlers.wsgi
-application = django.core.handlers.wsgi.WSGIHandler()
+from django.core.wsgi import get_wsgi_application
+application = get_wsgi_application()
if using_newrelic:
application = newrelic.agent.wsgi_application()(application)