From 8f7ab8efed0edbca69e117c67e2b33a5fbd18fbe Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 24 Sep 2006 10:30:15 +0000 Subject: [PATCH] Avoid displaying the profanities list in the debug output. Makes it a bit more "safe for work". git-svn-id: http://code.djangoproject.com/svn/django/trunk@3813 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/views/debug.py b/django/views/debug.py index 6178bdb83b1..a7f44d17b3a 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -4,7 +4,7 @@ from django.utils.html import escape from django.http import HttpResponseServerError, HttpResponseNotFound import os, re -HIDDEN_SETTINGS = re.compile('SECRET|PASSWORD') +HIDDEN_SETTINGS = re.compile('SECRET|PASSWORD|PROFANITIES_LIST') def linebreak_iter(template_source): yield 0