I was using
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()as per whichever
This Is The Right Way To Lay Out A Django Application article I was reading at the time. This seems to now break in 1.7 (details - from someone else -
here), so I've replaced it with
from django.core.wsgi import get_wsgi_application
from dj_static import Cling
application = Cling(get_wsgi_application())Which seems to work, although I don't know why.
So:
1) Is this a universal thing everyone should do?
2) If everyone is going to hit this same issue, can we add it to the migration docs?
3) If it's already in the migration docs, apologies :)