Reproduces the conditions of issue #62.

This commit is contained in:
Bertrand Bordage 2016-10-23 21:21:30 +02:00
parent f7687b0ac9
commit eef82f8aaa
1 changed files with 4 additions and 3 deletions

View File

@ -134,10 +134,11 @@ CACHALOT_ENABLED = True
# Settings for django-debug-toolbar
#
INSTALLED_APPS += [
'django.contrib.staticfiles',
# We put django-debug-toolbar before to reproduce the conditions of this issue:
# https://github.com/BertrandBordage/django-cachalot/issues/62
INSTALLED_APPS = [
'debug_toolbar',
]
] + INSTALLED_APPS + ['django.contrib.staticfiles']
DEBUG_TOOLBAR_PANELS = [
'debug_toolbar.panels.versions.VersionsPanel',