diff --git a/contrib/caldav/calcurse-caldav.py b/contrib/caldav/calcurse-caldav.py index 5c028bf..1db4740 100755 --- a/contrib/caldav/calcurse-caldav.py +++ b/contrib/caldav/calcurse-caldav.py @@ -138,6 +138,7 @@ def remote_query(conn, cmd, path, additional_headers, body): def get_etags(conn, hrefs=[]): if len(hrefs) > 0: + headers = {} body = ('' '' @@ -146,13 +147,14 @@ def get_etags(conn, hrefs=[]): body += '{}'.format(href) body += '' else: + headers = {'Depth': '1'} body = ('' '' '' '' '') - headers, body = remote_query(conn, "REPORT", path, {}, body) + headers, body = remote_query(conn, "REPORT", path, headers, body) if not headers: return {} root = etree.fromstring(body)