From eef82f8aaacf52f603e657320e74c95580bee545 Mon Sep 17 00:00:00 2001 From: Bertrand Bordage Date: Sun, 23 Oct 2016 21:21:30 +0200 Subject: [PATCH] Reproduces the conditions of issue #62. --- settings.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/settings.py b/settings.py index 92322dd..9cae5f7 100644 --- a/settings.py +++ b/settings.py @@ -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',