From d9c95433e9088db15da3457c3f690c61128a31c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Mon, 8 Feb 2016 22:42:17 +0100 Subject: [PATCH] Disable debug toolbar from development - breaks somehow. --- bornhack/settings/development.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bornhack/settings/development.py b/bornhack/settings/development.py index 2c1e73c4..0b08e734 100644 --- a/bornhack/settings/development.py +++ b/bornhack/settings/development.py @@ -1,6 +1,6 @@ from .base import * -INSTALLED_APPS += ['debug_toolbar', ] +# INSTALLED_APPS += ['debug_toolbar', ] SECRET_KEY = 'bornhack_development' DEBUG = True