bug fix for grid field: convert values to unicode on unmarshall
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3081 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
8572156c11
commit
bff8785a60
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class GridFieldInstance(ListFieldInstance):
|
|||
return dict(headers=headers, rows=rows)
|
||||
|
||||
def unmarshall(self, value):
|
||||
value = value.strip()
|
||||
value = toUnicode(value.strip())
|
||||
if not value:
|
||||
return []
|
||||
result = []
|
||||
|
|
Loading…
Add table
Reference in a new issue