diff options
| author | tschilling | 2014-02-15 09:07:31 -0500 | 
|---|---|---|
| committer | tschilling | 2014-02-15 09:07:31 -0500 | 
| commit | 5fd65ef273ff011c156b8a6953b667f8b6b6c249 (patch) | |
| tree | 07b0e24038539d1161c101d05e7dba1bb0245384 /debug_toolbar/settings.py | |
| parent | cc08c0d19bd5d1c7ff2281e3c3e4d92fa932e6d5 (diff) | |
| download | django-debug-toolbar-5fd65ef273ff011c156b8a6953b667f8b6b6c249.tar.bz2 | |
Changing set declaration.
Diffstat (limited to 'debug_toolbar/settings.py')
| -rw-r--r-- | debug_toolbar/settings.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/debug_toolbar/settings.py b/debug_toolbar/settings.py index 0ea75ab..2c71888 100644 --- a/debug_toolbar/settings.py +++ b/debug_toolbar/settings.py @@ -16,7 +16,7 @@ from django.utils import six  CONFIG_DEFAULTS = {      # Toolbar options -    'DEFAULT_DISABLED_PANELS': {'debug_toolbar.panels.redirects.RedirectsPanel'}, +    'DEFAULT_DISABLED_PANELS': set(['debug_toolbar.panels.redirects.RedirectsPanel']),      'INSERT_BEFORE': '</body>',      'RENDER_PANELS': None,      'RESULTS_STORE_SIZE': 10, | 
