[FIX] remove result if there is not

bzr revid: tfr@openerp.com-20110120151457-mkw07qq7ckx7qfqw
This commit is contained in:
Thibault Francois 2011-01-20 16:14:57 +01:00
parent 480e6ce964
commit 8f23eb56f4
1 changed files with 1 additions and 1 deletions

View File

@ -1545,7 +1545,7 @@ e.g.: Every other month on the last Sunday of the month for 10 occurrences:\
#REVET: Revision ID: olt@tinyerp.com-20100924131709-cqsd1ut234ni6txn
res = super(calendar_event, self).read(cr, uid, real_id, fields=fields, context=context, load=load)
if not res :
res = {}
continue
ls = base_calendar_id2real_id(base_calendar_id, with_date=res and res.get('duration', 0) or 0)
if not isinstance(ls, (str, int, long)) and len(ls) >= 2:
res['date'] = ls[1]