Fixed bug related to event fetching
This commit is contained in:
parent
6c4eb5c220
commit
08cc2b7daa
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class AgendaListDesign (DesignEntity):
|
||||||
self.line_spacing = line_spacing
|
self.line_spacing = line_spacing
|
||||||
self.col_spacing = col_spacing
|
self.col_spacing = col_spacing
|
||||||
self.text_size = text_size
|
self.text_size = text_size
|
||||||
self.start_dt = datetime(start_date.year, start_date.month, start_date.day)
|
self.start_dt = date(start_date.year, start_date.month, start_date.day)
|
||||||
self.always_add_start_row = always_add_start_row
|
self.always_add_start_row = always_add_start_row
|
||||||
|
|
||||||
def __finish_image__ (self):
|
def __finish_image__ (self):
|
||||||
|
|
Loading…
Reference in a new issue