From f83c0abd95d2a316da1518c1d5af0c33291ccf8e Mon Sep 17 00:00:00 2001 From: Alexandre Morignot Date: Mon, 24 Nov 2014 23:11:24 +0100 Subject: [PATCH] add a field 'summary' to the Query object --- weboob/capabilities/calendar.py | 1 + 1 file changed, 1 insertion(+) diff --git a/weboob/capabilities/calendar.py b/weboob/capabilities/calendar.py index e5c3dd9d..b547accb 100644 --- a/weboob/capabilities/calendar.py +++ b/weboob/capabilities/calendar.py @@ -95,6 +95,7 @@ class Query(BaseObject): end_date = DateField('End date of the event') city = StringField('Name of the city in witch event will take place') categories = Field('List of categories of the event', list, tuple) + summary = StringField('Title of the event') def __init__(self): BaseObject.__init__(self, '')