[FIX]Forget to re-revert ,.join

bzr revid: dle@openerp.com-20130206132219-o1y154vo40r0rsyx
This commit is contained in:
dle@openerp.com 2013-02-06 14:22:19 +01:00
parent dc3af97631
commit c84d60a74e
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ class crm_lead(base_stage, format_address, osv.osv):
return res and res.id or False
def _concat_all(attr):
return ','.join(filter(lambda x: x, [getattr(opp, attr) or '' for opp in opportunities if hasattr(opp, attr)]))
return '\n\n'.join(filter(lambda x: x, [getattr(opp, attr) or '' for opp in opportunities if hasattr(opp, attr)]))
# Process the fields' values
data = {}