[MISC]Spaces

bzr revid: pza@tinyerp.com-20131111092234-5sg8y2zwx719sbwz
This commit is contained in:
Pooja Zankhariya (OpenERP) 2013-11-11 14:22:34 +05:00
parent ad67b7ede7
commit 73bc5ae32b
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ class wkf_transition(osv.osv):
if not ids:
return []
line = self.browse(cr, uid, ids, context=context)
return [(line.id, (line.act_from.name) + '+' + (line.act_to.name)) if line.signal == False else (line.id, line.signal) for line in line ]
return [(line.id, (line.act_from.name) + '+' + (line.act_to.name)) if line.signal == False else (line.id, line.signal) for line in line]
wkf_transition()