mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 06:07:35 +03:00
Merge pull request #226 from meyerd/master
Only iterate props in REPORT request if they are there
This commit is contained in:
commit
f2fc02501c
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ def report(path, xml_request, collection):
|
|||
root = ET.fromstring(xml_request.encode("utf8"))
|
||||
|
||||
prop_element = root.find(_tag("D", "prop"))
|
||||
props = [prop.tag for prop in prop_element]
|
||||
props = [prop.tag for prop in prop_element] if prop_element else []
|
||||
|
||||
if collection:
|
||||
if root.tag in (_tag("C", "calendar-multiget"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue