# HG changeset patch # User ymh # Date 1371444502 -7200 # Node ID 54775fd2381f27b567c65ced8ba32747223d1287 # Parent 79bd31a1410c56981dd378f01ddbf1c510763650 correct wsgi.py diff -r 79bd31a1410c -r 54775fd2381f src/jocondelab/wsgi.py --- a/src/jocondelab/wsgi.py Mon Jun 17 05:54:48 2013 +0200 +++ b/src/jocondelab/wsgi.py Mon Jun 17 06:48:22 2013 +0200 @@ -25,7 +25,7 @@ # file. This includes Django's development server, if the WSGI_APPLICATION # setting points here. from django.core.wsgi import get_wsgi_application -_application = get_wsgi_application() +application = get_wsgi_application() # Apply WSGI middleware here. # from helloworld.wsgi import HelloWorldApplication