diff --git a/vdirsyncer/storage/dav.py b/vdirsyncer/storage/dav.py index b4bc5ce..045aca5 100644 --- a/vdirsyncer/storage/dav.py +++ b/vdirsyncer/storage/dav.py @@ -379,7 +379,6 @@ class CarddavStorage(DavStorage): CardDAV. Usable as ``carddav`` in the config file. ''' + DavStorage.__doc__ - fileext = '.vcf' item_mimetype = 'text/vcard' dav_header = 'addressbook' diff --git a/vdirsyncer/storage/http.py b/vdirsyncer/storage/http.py index 5f31102..81ae148 100644 --- a/vdirsyncer/storage/http.py +++ b/vdirsyncer/storage/http.py @@ -36,7 +36,6 @@ def prepare_verify(verify): class HttpStorage(Storage): - ''' Use a simple ``.ics`` file (or similar) from the web. Usable as ``http`` in the config file. @@ -63,7 +62,7 @@ class HttpStorage(Storage): [storage holidays_remote] type = http - url = https://mozorg.cdn.mozilla.net/media/caldata/QueenslandHolidays.ics + url = https://example.com/holidays_from_hicksville.ics ''' _repr_attributes = ('username', 'url')