[Zope-dev] z3c.form bug with radio widget label

2008-12-12 Thread Johannes Raggam
hey, i guess i found a bug in z3c.form.browser.radio. in z3c.form.browser.radio, line 49 (class RadioWidget, def update), the line should read label = term.value instead of label = term.token we found this, while trying to display some unicode characters (umlaute) in radio widget labels.

Re: [Zope-dev] z3c.form bug with radio widget label

2008-12-12 Thread Marius Gedminas
On Fri, Dec 12, 2008 at 02:33:53PM +, Johannes Raggam wrote: hey, i guess i found a bug in z3c.form.browser.radio. in z3c.form.browser.radio, line 49 (class RadioWidget, def update), the line should read label = term.value You can't assume ``value`` will be a string. People