[Answered ]-Wsgi.py error after migrating GAE app to Python 2.7

2👍

Don’t use run_wsgi_app in Python 2.7 runtime. In your app.yaml you have to refer to the actual WSGI application object.

See documentation here on how to properly configure Django

👤Maxim

Leave a comment