Show More
@@ -2703,7 +2703,9 b' class InteractiveShell(SingletonConfigurable):' | |||||
2703 | # raised in user code. It would be nice if there were |
|
2703 | # raised in user code. It would be nice if there were | |
2704 | # versions of run_cell that did raise, so |
|
2704 | # versions of run_cell that did raise, so | |
2705 | # we could catch the errors. |
|
2705 | # we could catch the errors. | |
2706 | self.run_cell(cell, silent=True, shell_futures=shell_futures) |
|
2706 | result = self.run_cell(cell, silent=True, shell_futures=shell_futures) | |
|
2707 | if not result.success: | |||
|
2708 | break | |||
2707 | except: |
|
2709 | except: | |
2708 | self.showtraceback() |
|
2710 | self.showtraceback() | |
2709 | warn('Unknown failure executing file: <%s>' % fname) |
|
2711 | warn('Unknown failure executing file: <%s>' % fname) |
General Comments 0
You need to be logged in to leave comments.
Login now