##// END OF EJS Templates
Backport PR #5788: run cells with `silent=True` in `%run nb.ipynb`...
Thomas Kluyver -
Show More
@@ -2601,7 +2601,7 b' class InteractiveShell(SingletonConfigurable):'
2601 # raised in user code. It would be nice if there were
2601 # raised in user code. It would be nice if there were
2602 # versions of run_cell that did raise, so
2602 # versions of run_cell that did raise, so
2603 # we could catch the errors.
2603 # we could catch the errors.
2604 self.run_cell(cell, store_history=False, shell_futures=False)
2604 self.run_cell(cell, silent=True, shell_futures=False)
2605 except:
2605 except:
2606 self.showtraceback()
2606 self.showtraceback()
2607 warn('Unknown failure executing file: <%s>' % fname)
2607 warn('Unknown failure executing file: <%s>' % fname)
General Comments 0
You need to be logged in to leave comments. Login now