From 7011914cc57a6d1ae8a25a1df4b09e7d6d083c0e Mon Sep 17 00:00:00 2001 From: Ace Date: Tue, 17 Dec 2019 16:17:29 +0100 Subject: [PATCH] Using recurring events by default As the tests for the recurring events have passed, the recurring events feature can now be used by default. Event if it fails, the try/except handling won't let the script crash in case something goes wrong while parsing recurring events. --- modules/inkycal_icalendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/inkycal_icalendar.py b/modules/inkycal_icalendar.py index 044df27..a0bfa96 100644 --- a/modules/inkycal_icalendar.py +++ b/modules/inkycal_icalendar.py @@ -10,7 +10,7 @@ from settings import ical_urls import arrow from ics import Calendar -use_recurring_events = False ## Attention: experimental feature! +use_recurring_events = True print_events = False style = 'DD MMM YY HH:mm'