BUG: Remove Pokemon exception handling.

This was masking real errors that were occurring during registration of
cell magic.
This commit is contained in:
Scott Sanderson
2015-02-13 10:11:27 +01:00
committed by Thomas Wiecki
parent 7059ba1e6a
commit 357f1a88a4
+1 -1
View File
@@ -34,7 +34,7 @@ from . import api
try:
ip = get_ipython() # flake8: noqa
ip.register_magic_function(utils.parse_cell_magic, "line_cell", "zipline")
except:
except NameError:
pass
__all__ = [