From 98aff2cfbcabdbe2b08ff729f979c92c2b251ce5 Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Sun, 12 Jul 2015 11:33:22 -0500 Subject: [PATCH] Push model info, whoops! --- ipywidgets/widgets/widget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipywidgets/widgets/widget.py b/ipywidgets/widgets/widget.py index 1f8515aa5e..ff8babb5cd 100644 --- a/ipywidgets/widgets/widget.py +++ b/ipywidgets/widgets/widget.py @@ -141,9 +141,9 @@ def handle_comm_opened(comm, msg): # Traits #------------------------------------------------------------------------- _model_module = Unicode(None, allow_none=True, help="""A requirejs module name - in which to find _model_name. If empty, look in the global registry.""") + in which to find _model_name. If empty, look in the global registry.""", sync=True) _model_name = Unicode('WidgetModel', help="""Name of the backbone model - registered in the front-end to create and sync this widget with.""") + registered in the front-end to create and sync this widget with.""", sync=True) _view_module = Unicode(help="""A requirejs module in which to find _view_name. If empty, look in the global registry.""", sync=True) _view_name = Unicode(None, allow_none=True, help="""Default view registered in the front-end