From 562fabfce046908ab9227af30928033990b6812e Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Fri, 7 Oct 2016 16:31:28 +0100 Subject: [PATCH] Remove the duplication of Workbook in the description. Currently it is outputting things like "Workflows in the Baremetal Workbook Workbook". This change removes the extra "Workbook". Change-Id: I039b99790e510065f3f0a6d6063d201cbc97c8e5 --- doc/source/_exts/workbooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/_exts/workbooks.py b/doc/source/_exts/workbooks.py index ff58297b3..7db5438c5 100644 --- a/doc/source/_exts/workbooks.py +++ b/doc/source/_exts/workbooks.py @@ -41,7 +41,7 @@ def _workbook_to_rst(name, workbook): if 'description' in workbook: yield workbook['description'] yield '' - yield 'Workflows in the {} Workbook'.format(title) + yield 'Workflows in the {}'.format(title) yield '' for wf_name, workflow in sorted(workbook['workflows'].items()):