From 7a96578ca427342b12579f095fe84afed2d9371b Mon Sep 17 00:00:00 2001 From: Jonathan Dupart Date: Tue, 9 Apr 2013 00:42:25 +0200 Subject: [PATCH] Typo: missing comma sync-collection and expand-property where returned concatenated in PROPFIND answers. --- radicale/xmlutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/xmlutils.py b/radicale/xmlutils.py index 7896a54..9abed83 100644 --- a/radicale/xmlutils.py +++ b/radicale/xmlutils.py @@ -278,7 +278,7 @@ def _propfind_response(path, item, props, user): element.append(privilege) elif tag == _tag("D", "supported-report-set"): for report_name in ( - "principal-property-search", "sync-collection" + "principal-property-search", "sync-collection", "expand-property", "principal-search-property-set"): supported = ET.Element(_tag("D", "supported-report")) report_tag = ET.Element(_tag("D", "report"))