diff options
Diffstat (limited to 'debug_toolbar/utils.py')
| -rw-r--r-- | debug_toolbar/utils.py | 7 | 
1 files changed, 1 insertions, 6 deletions
| 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)) | 
