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
This commit is contained in:
Dougal Matthews 2016-10-07 16:31:28 +01:00
parent fe7ed663c5
commit 562fabfce0
1 changed files with 1 additions and 1 deletions

View File

@ -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()):