From d5435ed534edff2c9858e41b668789241701db55 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Fri, 30 May 2014 17:15:50 +0200 Subject: [PATCH] Add comment --- vdirsyncer/utils/vobject.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vdirsyncer/utils/vobject.py b/vdirsyncer/utils/vobject.py index 51ea61f..d1303c1 100644 --- a/vdirsyncer/utils/vobject.py +++ b/vdirsyncer/utils/vobject.py @@ -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)