diff --git a/IPython/html.py b/IPython/html.py index 3e233dc..170798b 100644 --- a/IPython/html.py +++ b/IPython/html.py @@ -8,12 +8,14 @@ import sys from warnings import warn warn("The `IPython.html` package has been deprecated. " - "You should import from jupyter_notebook instead.") + "You should import from `jupyter_notebook` and `jupyter_widgets` instead.") from IPython.utils.shimmodule import ShimModule sys.modules['IPython.html'] = ShimModule( src='IPython.html', mirror='jupyter_notebook') +sys.modules['IPython.html.widgets'] = ShimModule( + src='IPython.html.widgets', mirror='jupyter_widgets') if __name__ == '__main__': from jupyter_notebook import notebookapp as app