Skip to content

Commit

Permalink
Merge 4144aec into a943df3
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Mar 17, 2019
2 parents a943df3 + 4144aec commit dfbde2c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions holoviews/ipython/__init__.py
Expand Up @@ -120,8 +120,13 @@ def __call__(self, *args, **params):
import nbformat # noqa (ensures availability)
else:
from IPython import nbformat # noqa (ensures availability)
from .archive import notebook_archive
holoviews.archive = notebook_archive
try:
from .archive import notebook_archive
holoviews.archive = notebook_archive
except AttributeError as e:
if str(e) != "module 'tornado.web' has no attribute 'asynchronous'":
raise

except ImportError:
pass

Expand Down

0 comments on commit dfbde2c

Please sign in to comment.