Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion voila/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ async def _jinja_cell_generator(self, nb, kernel_id):
self.executor.strip_code_cell_errors(input_cell)
output_cell = input_cell
break
except Exception as e:
except BaseException as e:
self.log.exception('Error at server while executing cell: %r', input_cell)
output_cell = nbformat.v4.new_code_cell()
if self.executor.should_strip_error():
Expand Down