DAV: Also allow : in href

This commit is contained in:
Markus Unterwaditzer 2015-06-22 15:27:51 +02:00
parent 7e6cf8cb28
commit 6fa3b1d3d7

View file

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