mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Fix missing XML header, see #688
This commit is contained in:
parent
5700c4688b
commit
792dbc171f
2 changed files with 7 additions and 1 deletions
|
|
@ -9,6 +9,12 @@ Package maintainers and users who have to manually update their installation
|
||||||
may want to subscribe to `GitHub's tag feed
|
may want to subscribe to `GitHub's tag feed
|
||||||
<https://github.com/pimutils/vdirsyncer/tags.atom>`_.
|
<https://github.com/pimutils/vdirsyncer/tags.atom>`_.
|
||||||
|
|
||||||
|
Version 0.17.0
|
||||||
|
==============
|
||||||
|
|
||||||
|
- Fix bug where collection discovery under DAV-storages would produce invalid
|
||||||
|
XML. See :gh:`688`.
|
||||||
|
|
||||||
Version 0.16.3
|
Version 0.16.3
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -146,7 +146,7 @@ class Discover(object):
|
||||||
_homeset_xml = None
|
_homeset_xml = None
|
||||||
_homeset_tag = None
|
_homeset_tag = None
|
||||||
_well_known_uri = None
|
_well_known_uri = None
|
||||||
_collection_xml = b"""
|
_collection_xml = b"""<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<d:propfind xmlns:d="DAV:">
|
<d:propfind xmlns:d="DAV:">
|
||||||
<d:prop>
|
<d:prop>
|
||||||
<d:resourcetype />
|
<d:resourcetype />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue