mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-01 10:05:50 +00:00
Add comment
This commit is contained in:
parent
8493407c49
commit
d5435ed534
1 changed files with 3 additions and 0 deletions
|
|
@ -93,6 +93,9 @@ def to_unicode_lines(item):
|
|||
|
||||
for content_line in item.content_lines():
|
||||
if content_line:
|
||||
# https://github.com/untitaker/vdirsyncer/issues/70
|
||||
# icalendar escapes semicolons which are not supposed to get
|
||||
# escaped, because it is not aware of vcard
|
||||
content_line = content_line.replace(u'\\;', u';')
|
||||
yield icalendar.parser.foldline(content_line)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue