diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7be2ff9..11526ea 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,9 @@ Version 0.4.1 *yet to be released* +- All ``create`` arguments from all storages are gone. Vdirsyncer now asks if + it should try to create collections. + Version 0.4.0 ============= diff --git a/example.cfg b/example.cfg index b71278c..db1c292 100644 --- a/example.cfg +++ b/example.cfg @@ -39,8 +39,6 @@ collections = ["from b"] type = filesystem path = ~/.contacts/ fileext = .vcf -# Create the directory if it doesn't exist: `true` or `false` -#create = true [storage bob_contacts_remote] type = carddav diff --git a/vdirsyncer/storage/filesystem.py b/vdirsyncer/storage/filesystem.py index 18e8d44..670d3e0 100644 --- a/vdirsyncer/storage/filesystem.py +++ b/vdirsyncer/storage/filesystem.py @@ -33,7 +33,6 @@ class FilesystemStorage(Storage): trigger a re-download of everything (but *should* not cause data-loss of any kind). :param encoding: File encoding for items. - :param create: Create directories if they don't exist. ''' storage_name = 'filesystem' diff --git a/vdirsyncer/storage/singlefile.py b/vdirsyncer/storage/singlefile.py index a993362..705e9b6 100644 --- a/vdirsyncer/storage/singlefile.py +++ b/vdirsyncer/storage/singlefile.py @@ -38,7 +38,6 @@ class SingleFileStorage(Storage): :param path: The filepath to the file to be written to. :param encoding: Which encoding the file should use. Defaults to UTF-8. - :param create: Create the file if it does not exist. Example for syncing with :py:class:`vdirsyncer.storage.CaldavStorage`::