waynebliu
waynebliu
I think a simple solution is to wrap try/except around the if IPYTHON_MAIN() line
Would be nice to have this in 0.5.6 if possible...
Ugly workaround: I create my wrapper extension and just catch the exception def load_ipython_extension(ip=None): import importnb, importnb.ipython_extension try: if importnb.ipython_extension.IPYTHON_MAIN(): from importnb.parameterize import Parameterize as Notebook else: from importnb.loader import...
Super annoying. I worked around it by adding this to custom.css: .CodeMirror-scroll { overflow: visible !important; }