[IMP] orm: add missing space in error message during validation

bzr revid: mat@openerp.com-20131125124717-4jsqv0lfu7hpxusi
This commit is contained in:
Martin Trigaux 2013-11-25 13:47:17 +01:00
parent 04908a9911
commit e2102ca9ce
1 changed files with 1 additions and 1 deletions

View File

@ -1549,7 +1549,7 @@ class BaseModel(object):
else:
translated_msg = trans._get_source(cr, uid, self._name, 'constraint', lng, msg)
error_msgs.append(
_("Error occurred while validating the field(s) %s: %s") % (','.join(fields), translated_msg)
_("Error occurred while validating the field(s) %s: %s") % (', '.join(fields), translated_msg)
)
self._invalids.update(fields)
if error_msgs: