Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions contrib/caldav/calcurse-caldav.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,11 @@ def pull_objects(hrefs_missing, hrefs_modified, conn, syncdb, etagdict):
die_atnode('Missing calendar data.', node)
cdata = cdatanode.text

if cdata is None:
if verbose:
print("Ignoring empty object {}.".format(etag))
continue

if href in hrefs_modified:
if verbose:
print("Replacing object {}.".format(etag))
Expand Down