Skip to content
Snippets Groups Projects
Commit 16cce5f3 authored by Feanil Patel's avatar Feanil Patel
Browse files

BOM-843 Fix reraise call.

parent 2d215ccc
No related merge requests found
......@@ -190,7 +190,7 @@ class ProblemBlock(
self.scope_ids.user_id
)
_, _, traceback_obj = sys.exc_info() # pylint: disable=redefined-outer-name
six.reraise(ProcessingError(not_found_error_message), None, traceback_obj)
six.reraise(ProcessingError, ProcessingError(not_found_error_message), traceback_obj)
except Exception:
log.exception(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment