From 265df3b259ba3fe27149adcfb149cbe673618ab4 Mon Sep 17 00:00:00 2001 From: Apurva Shukla <43486117+naezeroth@users.noreply.github.com> Date: Sun, 30 Aug 2020 21:03:37 +1000 Subject: [PATCH] Adding a line to fix errors with ICS format regarding lack of DTSTAMP (#75) --- src/fb2cal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fb2cal.py b/src/fb2cal.py index e10ad59..0bf44dd 100644 --- a/src/fb2cal.py +++ b/src/fb2cal.py @@ -712,6 +712,7 @@ def populate_birthdays_calendar(birthdays): for birthday in birthdays: e = Event() e.uid = birthday.uid + e.created = cur_date e.name = f"{birthday.name}'s Birthday" # Calculate the year as this year or next year based on if its past current month or not