From 6ed5b04146002d51c907a807834610421852bf43 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Mon, 2 Jun 2014 12:02:11 +0200 Subject: [PATCH] [FIX] calendar: replace end_type = final_date by end_date, the actual right selection --- addons/calendar/calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/calendar/calendar.py b/addons/calendar/calendar.py index 46e8b024dd6..b6473a7f1a7 100644 --- a/addons/calendar/calendar.py +++ b/addons/calendar/calendar.py @@ -1273,7 +1273,7 @@ class calendar_event(osv.Model): if data.get('count'): data['end_type'] = 'count' else: - data['end_type'] = 'final_date' + data['end_type'] = 'end_date' return data def message_get_subscription_data(self, cr, uid, ids, user_pid=None, context=None):