diff --git a/radicale/xmlutils.py b/radicale/xmlutils.py index 3aa94633..5639f4ca 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)