[FIX] - sorry for wrong fix

bzr revid: dsh@tinyerp.com-20100519122219-s0pu6b2mzxwj1mmv
This commit is contained in:
DSH (Open ERP) 2010-05-19 17:52:19 +05:30
parent 08042b1fb3
commit c53fbb3898
1 changed files with 1 additions and 1 deletions

View File

@ -1625,7 +1625,7 @@ class ir_model(osv.osv):
if data:
for val in data:
val['id'] = base_calendar_id2real_id(val['id'])
return new_ids = isinstance(ids, (str, int, long)) and data[0] or data
return isinstance(ids, (str, int, long)) and data[0] or data
ir_model()