From 03fd1cc81c02a5462aeb4dbce0bfe8a2afdef43d Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 24 Nov 2013 11:38:43 +0100 Subject: Remove HIDE_DJANGO_SQL configuration option. It was badly named and HIDE_IN_STACKTRACES provides a more general solution. The ability to show code in django.contrib but not in django doesn't seem particularly useful. Fix #474. --- debug_toolbar/utils.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'debug_toolbar/utils.py') diff --git a/debug_toolbar/utils.py b/debug_toolbar/utils.py index 065c810..d84c79c 100644 --- a/debug_toolbar/utils.py +++ b/debug_toolbar/utils.py @@ -54,12 +54,7 @@ def tidy_stacktrace(stack): """ trace = [] for frame, path, line_no, func_name, text in (f[:5] for f in stack): - s_path = os.path.realpath(path) - # Support hiding of frames -- used in various utilities that provide - # inspection. - if CONFIG['HIDE_DJANGO_SQL'] and django_path in s_path and not 'django/contrib' in s_path: - continue - if omit_path(s_path): + if omit_path(os.path.realpath(path)): continue text = (''.join(force_text(t) for t in text)).strip() if text else '' trace.append((path, line_no, func_name, text)) -- cgit v1.2.3