From 6fa3b1d3d70eeedbd66de8bf4b2c55efe0ece2b6 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 22 Jun 2015 15:27:51 +0200 Subject: [PATCH] DAV: Also allow : in href --- 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 b1698d4..9774290 100644 --- a/vdirsyncer/storage/dav.py +++ b/vdirsyncer/storage/dav.py @@ -32,7 +32,7 @@ def _normalize_href(base, href): x = utils.compat.urlparse.urlsplit(x).path x = utils.compat.urlunquote(x) - x = utils.compat.urlquote(x, '/@%') + x = utils.compat.urlquote(x, '/@%:') dav_logger.debug('Normalized URL from {!r} to {!r}'.format(orig_href, x))