3

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

enter image description here

andilabs
  • 22,159
  • 14
  • 114
  • 151

1 Answers1

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