I have following problem with Django 1.9.2
and django-debug-toolbar==1.4
the SQL queries are escaped. how to fix it?
Asked
Active
Viewed 260 times
3

andilabs
- 22,159
- 14
- 114
- 151
1 Answers
3
It's an incompatibility with the debug_panel. Just had the same problem.
Edit the MIDDLEWARE_CLASSES
settings, and replace the debug_panel.middleware.DebugPanelMiddleware
with debug_toolbar.middleware.DebugToolbarMiddleware
.

David Arcos
- 5,957
- 5
- 30
- 39