From a025a46acda6f9e02ba3dd4e662264b96136c570 Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 17 Sep 2017 14:03:53 +0200 Subject: [PATCH] Fix tag names for custom properties with allprop and propname --- radicale/xmlutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/xmlutils.py b/radicale/xmlutils.py index 3aa9463..5639f4c 100644 --- a/radicale/xmlutils.py +++ b/radicale/xmlutils.py @@ -62,7 +62,7 @@ for short, url in NAMESPACES.items(): ET.register_namespace("" if short == "D" else short, url) CLARK_TAG_REGEX = re.compile(r"{(?P[^}]*)}(?P.*)", re.VERBOSE) -HUMAN_REGEX = re.compile(r"(?P[^:{}]*)(?P.*)", re.VERBOSE) +HUMAN_REGEX = re.compile(r"(?P[^:{}]*):(?P.*)", re.VERBOSE) DAY = timedelta(days=1) SECOND = timedelta(seconds=1)