Skip to content

Commit 8628737

Browse files
committed
Keep tracebacks when an exception occurs
1 parent c019c80 commit 8628737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flask_restful/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def abort(http_status_code, **kwargs):
3434
except HTTPException as e:
3535
if len(kwargs):
3636
e.data = kwargs
37-
raise e
37+
raise
3838

3939
DEFAULT_REPRESENTATIONS = {'application/json': output_json}
4040

0 commit comments

Comments
 (0)