I am trying to use the werkzeug debugger, but despite installing it as recommended, I just get the usual django error page.
from my passenger_wsgi.py:
import django.core.handlers.wsgi from werkzeug.debug import DebuggedApplication application = django.core.handlers.wsgi.WSGIHandler() application = DebuggedApplication(application, evalex=True)
I basically have to run my django application (even in development) through the passenger, not manage.py.
Is there a way to make the werkzeug debugger work under these conditions? Could I, for example, prevent Django from catching the errors themselves?
source share