##// END OF EJS Templates
Merge pull request #6377 from jasongrout/fix-widget-prefix...
Jonathan Frederic -
r17846:d9696592 merge
parent child Browse files
Show More
@@ -361,7 +361,7 b' class Widget(LoggingConfigurable):'
361 elif isinstance(x, string_types) and x.startswith('IPY_MODEL_') and x[10:] in Widget.widgets:
361 elif isinstance(x, string_types) and x.startswith('IPY_MODEL_') and x[10:] in Widget.widgets:
362 # we want to support having child widgets at any level in a hierarchy
362 # we want to support having child widgets at any level in a hierarchy
363 # trusting that a widget UUID will not appear out in the wild
363 # trusting that a widget UUID will not appear out in the wild
364 return Widget.widgets[x]
364 return Widget.widgets[x[10:]]
365 else:
365 else:
366 return x
366 return x
367
367
General Comments 0
You need to be logged in to leave comments. Login now