Remove = from reserved chars

See #491
This commit is contained in:
Markus Unterwaditzer 2016-08-19 20:04:55 +02:00
parent e1c2e1b5d8
commit 902d914db6

View file

@ -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()