##// END OF EJS Templates
Break up convert_notebooks so that it is easier to subclass
Break up convert_notebooks so that it is easier to subclass

File last commit:

r18590:be819bae
r20746:757b540f
Show More
Skip Exceptions.ipynb
50 lines | 1.3 KiB | text/plain | TextLexer
In [1]:
raise Exception("message")
---------------------------------------------------------------------------
Exception                                 Traceback (most recent call last)
<ipython-input-1-335814d14fc1> in <module>()
----> 1 raise Exception("message")

Exception: message
In [2]:
print('ok')
ok