From 9d5be79cf555751fb719137201b9aa1e27343ca2 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 18 May 2014 22:43:10 +0200 Subject: [PATCH] Style fixes --- vdirsyncer/storage/dav.py | 1 - vdirsyncer/storage/http.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) 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')