Commit 940967d9 authored by Sebastien Robin's avatar Sebastien Robin

an empty string should be set as None


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2750 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b96e7f1c
......@@ -108,12 +108,12 @@ type_definition = {
'isList' : 0,
},
'string' : { 'cast' : asString,
'null' : (None, ),
'null' : ('',None, ),
'default' : '',
'isList' : 0,
},
'text' : { 'cast' : asString,
'null' : (None,),
'null' : ('',None,),
'default' : '',
'isList' : 0,
},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment