diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-10-02 20:40:34 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-10-02 20:40:34 -0400 |
commit | ea00a099dffd7157c93af54b5817734348d2bbc6 (patch) | |
tree | 89fa4ba0c0ac19a4286ba4c4cb64f77536b1a098 /archweb.wsgi | |
parent | 1a1fd4a3d6aa7f6b2338f7751f5f97a30a059a04 (diff) | |
parent | 0f0ce18109f8104d7b2abe9024ef26fa07ff0292 (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.wsgi | 4 |
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) |