Merge pull request #182 from dnnr/serialize-sorted
Sort items before serializing to minimize diff
This commit is contained in:
commit
35a0047b38
@ -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…
Reference in New Issue
Block a user