From 6b2450f4acc68d9541480d5e63058fa05cdb5e87 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 5 Feb 2017 14:38:37 +0100 Subject: [PATCH] Fix storage example generator --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 73f43f5..635f822 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -88,7 +88,7 @@ def github_issue_role(name, rawtext, text, lineno, inliner, def format_storage_config(cls, header=True): if header is True: yield '[storage example_for_{}]'.format(cls.storage_name) - yield 'type = {}'.format(cls.storage_name) + yield 'type = "{}"'.format(cls.storage_name) from vdirsyncer.storage.base import Storage from vdirsyncer.utils import get_storage_init_specs