From e489718d5c982e40788d2cc50a6bf64a5b6a03c0 Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Fri, 12 Dec 2014 20:12:53 +0000 Subject: [PATCH] Make the widget error message shorter and more understandable. --- IPython/html/widgets/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/widgets/__init__.py b/IPython/html/widgets/__init__.py index 062f0c08b..9480d95b5 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)