From d7d831a831fd10b6c70f96bcb22b24a3d05dadb4 Mon Sep 17 00:00:00 2001 From: "M.Ravi" Date: Thu, 15 Feb 2018 17:57:54 +0100 Subject: [PATCH] Comment out debug_toolbar for DEBUG version --- dynamicweb/settings/local.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dynamicweb/settings/local.py b/dynamicweb/settings/local.py index 1b03f3fe..4ea3dc7e 100644 --- a/dynamicweb/settings/local.py +++ b/dynamicweb/settings/local.py @@ -19,5 +19,6 @@ MIDDLEWARE_CLASSES += ("debug_toolbar.middleware.DebugToolbarMiddleware",) INSTALLED_APPS += ( 'django_extensions', - 'debug_toolbar' + # debug_toolbar seems to conflict with multisite (and djangocms_multisite) + # 'debug_toolbar' )