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:
helmutm 2008-12-23 09:11:36 +00:00
parent 8572156c11
commit bff8785a60

View file

@ -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 = []