From 488aff467b047108ba655475b333a4134908dbeb Mon Sep 17 00:00:00 2001 From: cos Date: Sat, 21 Jan 2017 17:59:04 +0100 Subject: |cos|: Could you please try that? --- contrib/caldav/calcurse-caldav.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3