Skip to content

Commit

Permalink
Fixed pallets#292.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Jan 11, 2009
1 parent 63bee67 commit 715f8aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion werkzeug/debug/__init__.py
Expand Up @@ -65,7 +65,8 @@ def debug_application(self, environ, start_response):
if hasattr(app_iter, 'close'):
app_iter.close()
traceback = get_current_traceback(skip=1, show_hidden_frames=
self.show_hidden_frames)
self.show_hidden_frames,
ignore_system_exceptions=True)
for frame in traceback.frames:
self.frames[frame.id] = frame
self.tracebacks[traceback.id] = traceback
Expand Down

0 comments on commit 715f8aa

Please sign in to comment.