[hg] galaxy 3244: Fix typo in last commit.
details: http://www.bx.psu.edu/hg/galaxy/rev/44526498cd00 changeset: 3244:44526498cd00 user: jeremy goecks <jeremy.goecks@emory.edu> date: Thu Jan 14 15:22:10 2010 -0500 description: Fix typo in last commit. diffstat: templates/tool_form.mako | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r 54a31dda709b -r 44526498cd00 templates/tool_form.mako --- a/templates/tool_form.mako Thu Jan 14 15:13:01 2010 -0500 +++ b/templates/tool_form.mako Thu Jan 14 15:22:10 2010 -0500 @@ -166,7 +166,7 @@ # Field may contain characters submitted by user and these characters may be unicode; handle non-ascii characters gracefully. field_html = field.get_html( prefix ) - if field_html is not unicode: + if type( field_html ) is not unicode: field_html = unicode( field_html, 'utf-8' ) %> <div class="form-row-input">${field_html}</div>
participants (1)
-
Greg Von Kuster