[B.END] Patch: escape summary too

This commit is contained in:
giuliof 2020-09-21 19:40:18 +02:00
parent fbac0ffada
commit 2f9f4fcc9d
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ def getEvents(baseDay, interval):
if blockParsing == "VEVENT":
if k[0] == 'SUMMARY':
# save event name
event_dict['NAME'] = k[1]
event_dict['NAME'] = escape(k[1])
elif k[0] == 'DTSTART':
options = parseOptions(k[1:])