##// END OF EJS Templates
python3 does not like adding lists and map results...
Jason Grout -
Show More
@@ -472,7 +472,7 b' class DOMWidget(Widget):'
472 472 'bolder',
473 473 'lighter',
474 474 'initial',
475 'inherit', ''] + map(str, range(100,1000,100)),
475 'inherit', ''] + list(map(str, range(100,1000,100))),
476 476 default_value='', sync=True)
477 477 font_size = CUnicode(sync=True)
478 478 font_family = Unicode(sync=True)
General Comments 0
You need to be logged in to leave comments. Login now