diff options
| author | Aymeric Augustin | 2014-01-06 22:52:52 +0100 | 
|---|---|---|
| committer | Aymeric Augustin | 2014-01-06 22:52:52 +0100 | 
| commit | 2613b0d19f02b3b356383c1e6268ffbdb4027897 (patch) | |
| tree | 67b6d1e1c7b98a5a8074f693c282021d38ce76d1 | |
| parent | 00990b531f1f78b372b0b08a649a84e6168a3c0e (diff) | |
| download | django-debug-toolbar-2613b0d19f02b3b356383c1e6268ffbdb4027897.tar.bz2 | |
Default DEBUG_TOOLBAR_PANELS didn't match the docs.
Fix #519.
| -rw-r--r-- | debug_toolbar/settings.py | 3 | 
1 files changed, 1 insertions, 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: | 
