ir.attachment: handle missing name from res_model

If, for any reason, the related model cannot return sth through its
name_get, don't bork.

bzr revid: p_christ@hol.gr-20100627200007-1aevqw6n4dg2e1pb
This commit is contained in:
P. Christeas 2010-06-27 23:00:07 +03:00
parent cb97a6dbdf
commit a2fbbc7c7c
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class ir_attachment(osv.osv):
if model_object and res_id:
model_pool = self.pool.get(model_object)
res = model_pool.name_get(cr,uid,[res_id],context)
data[attachment.id] = res[0][1]
data[attachment.id] = (res and res[0][1]) or False
else:
data[attachment.id] = False
return data