From 4c18aeeae17aa429b545d7eccdec1ca559ac1a0d 2015-08-19 18:44:24 From: Min RK Date: 2015-08-19 18:44:24 Subject: [PATCH] Merge pull request #8744 from aavanian/nbconvert-shim-fix Fixes #8743 (warning string) --- diff --git a/IPython/nbconvert.py b/IPython/nbconvert.py index 3ae73e8..5e35324 100644 --- a/IPython/nbconvert.py +++ b/IPython/nbconvert.py @@ -10,7 +10,7 @@ from warnings import warn from IPython.utils.shimmodule import ShimModule, ShimWarning warn("The `IPython.nbconvert` package has been deprecated. " - "You should import from ipython_nbconvert instead.", ShimWarning) + "You should import from nbconvert instead.", ShimWarning) # Unconditionally insert the shim into sys.modules so that further import calls # trigger the custom attribute access above