From e81639653972303ddc0802026341487f4e6b2fe8 2014-12-12 20:19:03 From: Brian E. Granger Date: 2014-12-12 20:19:03 Subject: [PATCH] Merge pull request #7201 from jasongrout/widget-warning Make the widget error message shorter and more understandable. --- diff --git a/IPython/html/widgets/__init__.py b/IPython/html/widgets/__init__.py index 062f0c0..9480d95 100644 --- a/IPython/html/widgets/__init__.py +++ b/IPython/html/widgets/__init__.py @@ -26,4 +26,4 @@ from .widget_string import HTMLWidget, LatexWidget, TextWidget, TextareaWidget # Warn on import from warnings import warn -warn("""The widget API is still considered experimental and may change in the future.""", FutureWarning, stacklevel=2) +warn("IPython widgets are experimental and may change in the future.", FutureWarning, stacklevel=2)