summaryrefslogtreecommitdiff
path: root/archweb.wsgi
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-10-02 20:40:34 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-10-02 20:40:34 -0400
commitea00a099dffd7157c93af54b5817734348d2bbc6 (patch)
tree89fa4ba0c0ac19a4286ba4c4cb64f77536b1a098 /archweb.wsgi
parent1a1fd4a3d6aa7f6b2338f7751f5f97a30a059a04 (diff)
parent0f0ce18109f8104d7b2abe9024ef26fa07ff0292 (diff)
Merge branch 'archweb' into archweb-generic
Conflicts: templates/public/download.html templates/public/index.html
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)