diff options
Diffstat (limited to 'contrib/caldav/calcurse-caldav.py')
-rwxr-xr-x | contrib/caldav/calcurse-caldav.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/caldav/calcurse-caldav.py b/contrib/caldav/calcurse-caldav.py index f7eb306..24f7ca4 100755 --- a/contrib/caldav/calcurse-caldav.py +++ b/contrib/caldav/calcurse-caldav.py @@ -85,9 +85,9 @@ def get_auth_headers(): def remote_query(cmd, path, additional_headers, body): headers = get_auth_headers() if cmd == 'PUT': - headers['Content-Type'] = 'Content-Type: text/calendar; charset=utf-8' + headers['Content-Type'] = 'text/calendar; charset=utf-8' else: - headers['Content-Type'] = 'Content-Type: application/xml; charset=utf-8' + headers['Content-Type'] = 'application/xml; charset=utf-8' headers.update(additional_headers) if debug: |