From 902d914db62da1c7796617a4d425d9b1c3d7fc14 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Fri, 19 Aug 2016 20:04:55 +0200 Subject: [PATCH] Remove = from reserved chars See #491 --- vdirsyncer/storage/dav.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdirsyncer/storage/dav.py b/vdirsyncer/storage/dav.py index f36e3f1..bbadd1e 100644 --- a/vdirsyncer/storage/dav.py +++ b/vdirsyncer/storage/dav.py @@ -21,7 +21,7 @@ CALDAV_DT_FORMAT = '%Y%m%dT%H%M%SZ' def _generate_path_reserved_chars(): - for x in "/?#[]!$&'()*+,;=": + for x in "/?#[]!$&'()*+,;": x = utils.compat.urlquote(x, '') yield x.upper() yield x.lower()