[REM] orm: pointless character replacement of quotes by spaces in field strings

bzr revid: xmo@openerp.com-20120723135022-9lh5yyk0au5xag3l
This commit is contained in:
Xavier Morel 2012-07-23 15:50:22 +02:00
parent c5db4ca91d
commit 8bdd730090
1 changed files with 1 additions and 1 deletions

View File

@ -758,7 +758,7 @@ class BaseModel(object):
'model_id': model_id,
'model': self._name,
'name': k,
'field_description': f.string.replace("'", " "),
'field_description': f.string,
'ttype': f._type,
'relation': f._obj or '',
'view_load': (f.view_load and 1) or 0,