Merge pull request #160 from emilyboda/emilyboda-hotfix-fix_loading_from_ics_file

fix loading from ics file
This commit is contained in:
Ace 2022-04-02 00:54:08 +02:00 committed by GitHub
commit 7ec890b2ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,19 +84,14 @@ class iCalendar:
example: 'path1' (single file) OR ['path1', 'path2'] (multiple files) example: 'path1' (single file) OR ['path1', 'path2'] (multiple files)
returns a list of iCalendars as string (raw) returns a list of iCalendars as string (raw)
""" """
if isinstance(filepath, list): if type(filepath) == list:
for path in filepath: ical = [Calendar.from_ical(str(open(path).read())) for path in filepath]
with open(path, mode='r') as ical_file: elif type(filepath) == str:
ical = (Calendar.from_ical(ical_file.read())) ical = [Calendar.from_ical(str(open(filepath).read()))]
self.icalendars += ical
elif isinstance(filepath, str):
with open(filepath, mode='r') as ical_file:
ical = (Calendar.from_ical(ical_file.read()))
self.icalendars += ical
else: else:
raise Exception (f"Input: '{filepath}' is not a string or list!") raise Exception (f"Input: '{filepath}' is not a string or list!")
self.icalendars += ical
logger.info('loaded iCalendars from filepaths') logger.info('loaded iCalendars from filepaths')
def get_events(self, timeline_start, timeline_end, timezone=None): def get_events(self, timeline_start, timeline_end, timezone=None):