From af2846570cc4c17c68cb5b4454eaeaacc28d8236 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 11 Apr 2015 23:09:54 +0200 Subject: [PATCH] More realistic example --- vdirsyncer/cli/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vdirsyncer/cli/utils.py b/vdirsyncer/cli/utils.py index 64c9a88..09fb92e 100644 --- a/vdirsyncer/cli/utils.py +++ b/vdirsyncer/cli/utils.py @@ -592,7 +592,8 @@ def parse_options(items, section=None): def format_storage_config(cls, header=True): if header is True: - yield '[storage {}]'.format(cls.storage_name) + yield '[storage example_for_{}]'.format(cls.storage_name) + yield 'type = {}'.format(cls.storage_name) from ..storage.base import Storage from ..utils import get_class_init_specs