mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Merge pull request #182 from dnnr/serialize-sorted
Sort items before serializing to minimize diff
This commit is contained in:
commit
35a0047b38
1 changed files with 1 additions and 0 deletions
|
@ -40,6 +40,7 @@ def serialize(tag, headers=(), items=()):
|
|||
items if needed (ie. for calendars).
|
||||
|
||||
"""
|
||||
items = sorted(items, key=lambda x: x.name)
|
||||
if tag == "VADDRESSBOOK":
|
||||
lines = [item.text for item in items]
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue