Fixed a bug when altering the only event on a calendar
This commit is contained in:
parent
076b6b60a4
commit
47815347fb
@ -217,7 +217,7 @@ class Calendar(object):
|
|||||||
headers = headers or self.headers or (
|
headers = headers or self.headers or (
|
||||||
Header("PRODID:-//Radicale//NONSGML Radicale Server//EN"),
|
Header("PRODID:-//Radicale//NONSGML Radicale Server//EN"),
|
||||||
Header("VERSION:2.0"))
|
Header("VERSION:2.0"))
|
||||||
items = items or self.items
|
items = items if items is not None else self.items
|
||||||
|
|
||||||
# Create folder if absent
|
# Create folder if absent
|
||||||
if not os.path.exists(os.path.dirname(self.path)):
|
if not os.path.exists(os.path.dirname(self.path)):
|
||||||
|
Loading…
Reference in New Issue
Block a user