From 2a4182cf9e3bcdc3de447b2f3d318eae7287a20f Mon Sep 17 00:00:00 2001 From: Pindi Albert Date: Tue, 5 Apr 2011 16:52:34 -0400 Subject: [PATCH] Restore the "debug" context processor, a default that was overriden --- home/biostar_settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/home/biostar_settings.py b/home/biostar_settings.py index b7d99177f..f86d94bd9 100644 --- a/home/biostar_settings.py +++ b/home/biostar_settings.py @@ -115,6 +115,7 @@ def path_join(*args): TEMPLATE_CONTEXT_PROCESSORS = ( "django.contrib.auth.context_processors.auth", + "django.core.context_processors.debug", "biostar.context.extras", )