mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 22:57:36 +03:00
Cosmetics
This commit is contained in:
parent
89e2226b16
commit
6db946080e
1 changed files with 3 additions and 3 deletions
|
@ -538,9 +538,9 @@ def report(path, xml_request, collection):
|
|||
items = [collection.get(href) for href, etag in collection.list()]
|
||||
|
||||
for item in items:
|
||||
if tag_filters and \
|
||||
item.name not in tag_filters and \
|
||||
not set(x.upper() for x in item.contents) & tag_filters:
|
||||
if (tag_filters and
|
||||
item.name not in tag_filters and
|
||||
not {tag.upper() for tag in item.contents} & tag_filters):
|
||||
continue
|
||||
|
||||
found_props = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue