diff options
| author | Aymeric Augustin | 2013-11-15 21:54:11 +0100 |
|---|---|---|
| committer | Aymeric Augustin | 2013-11-15 21:54:11 +0100 |
| commit | 4172e9fa7885ff16be95dc78aad044724cba6464 (patch) | |
| tree | 68d41b042039021b1f9a7407b0256f3a4b441c90 /debug_toolbar/utils | |
| parent | a5e26bcf0b6d83829a4921fb8f10bdf85727489f (diff) | |
| download | django-debug-toolbar-4172e9fa7885ff16be95dc78aad044724cba6464.tar.bz2 | |
Remove stacktrace scrubbing superseded by HIDDEN_STACKTRACE_MODULES.
Diffstat (limited to 'debug_toolbar/utils')
| -rw-r--r-- | debug_toolbar/utils/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/debug_toolbar/utils/__init__.py b/debug_toolbar/utils/__init__.py index cec20ad..c94e19c 100644 --- a/debug_toolbar/utils/__init__.py +++ b/debug_toolbar/utils/__init__.py @@ -56,8 +56,6 @@ def tidy_stacktrace(stack): s_path = os.path.realpath(path) # Support hiding of frames -- used in various utilities that provide # inspection. - if '__traceback_hide__' in frame.f_locals: - continue if CONFIG['HIDE_DJANGO_SQL'] and django_path in s_path and not 'django/contrib' in s_path: continue if omit_path(s_path): |
