Skip to content

Commit

Permalink
Set deleted props to None instead of ""
Browse files Browse the repository at this point in the history
  • Loading branch information
Unrud committed Aug 4, 2017
1 parent f91b2bc commit 5c15b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radicale/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ def set_meta_all(self, props):
delta_props = self.get_meta()
for key in delta_props.keys():
if key not in props:
delta_props[key] = ""
delta_props[key] = None
delta_props.update(props)
self.set_meta(self, delta_props)

Expand Down

0 comments on commit 5c15b30

Please sign in to comment.