From 030436327aab1dcd7e80281f2d25a1bcdd730098 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 12 Apr 2014 14:24:11 +0200 Subject: [PATCH] Fix #143 Since all iCalendar objects have VCALENDAR inside them, that tag is absolutely meaningless (in this context). --- radicale/xmlutils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/radicale/xmlutils.py b/radicale/xmlutils.py index 1d2f2bf..8613349 100644 --- a/radicale/xmlutils.py +++ b/radicale/xmlutils.py @@ -508,6 +508,7 @@ def report(path, xml_request, collection): tag_filters = set( element.get("name") for element in root.findall(".//%s" % _tag("C", "comp-filter"))) + tag_filters.discard('VCALENDAR') else: hreferences = () tag_filters = None