From af10a2f1c42c03ba51bcf4f5bba5aee92211ddfa Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Thu, 16 Jun 2011 07:54:15 +0200 Subject: [PATCH] Fix URLs in report requests --- radicale/xmlutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/xmlutils.py b/radicale/xmlutils.py index 25a3cd4..074bd62 100644 --- a/radicale/xmlutils.py +++ b/radicale/xmlutils.py @@ -430,7 +430,7 @@ def report(path, xml_request, calendar): multistatus.append(response) href = ET.Element(_tag("D", "href")) - href.text = path + item.name + href.text = "%s/%s" % (path, item.name) response.append(href) propstat = ET.Element(_tag("D", "propstat"))