Fix supported-calendar-component-set for collection's components

This commit is contained in:
Guillaume Ayoub 2013-06-17 11:30:26 +02:00
parent d38c4d1c1d
commit 70f8ee94d9

View File

@ -273,7 +273,8 @@ def _propfind_response(path, item, props, user):
# This is not a Todo # This is not a Todo
# pylint: disable=W0511 # pylint: disable=W0511
human_tag = _tag_from_clark(tag) human_tag = _tag_from_clark(tag)
if human_tag in collection_props: if is_collection and human_tag in collection_props:
# TODO: what do we have to do if it's not a collection?
components = collection_props[human_tag].split(",") components = collection_props[human_tag].split(",")
else: else:
components = ("VTODO", "VEVENT", "VJOURNAL") components = ("VTODO", "VEVENT", "VJOURNAL")