From 2613b0d19f02b3b356383c1e6268ffbdb4027897 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 6 Jan 2014 22:52:52 +0100 Subject: Default DEBUG_TOOLBAR_PANELS didn't match the docs. Fix #519. --- debug_toolbar/settings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/debug_toolbar/settings.py b/debug_toolbar/settings.py index 5ed0005..bb6a5e0 100644 --- a/debug_toolbar/settings.py +++ b/debug_toolbar/settings.py @@ -75,13 +75,12 @@ PANELS_DEFAULTS = [ 'debug_toolbar.panels.headers.HeadersPanel', 'debug_toolbar.panels.request.RequestPanel', 'debug_toolbar.panels.sql.SQLPanel', - 'debug_toolbar.panels.templates.TemplatesPanel', 'debug_toolbar.panels.staticfiles.StaticFilesPanel', + 'debug_toolbar.panels.templates.TemplatesPanel', 'debug_toolbar.panels.cache.CachePanel', 'debug_toolbar.panels.signals.SignalsPanel', 'debug_toolbar.panels.logging.LoggingPanel', 'debug_toolbar.panels.redirects.RedirectsPanel', - 'debug_toolbar.panels.profiling.ProfilingPanel', ] try: -- cgit v1.2.3