[diff_branches] add note when no options are {new,updated,deprecated}

Change-Id: I4e64e822c85b7a43baec95d8764d35e894b0406b
This commit is contained in:
Christian Berendt 2015-08-07 17:31:16 +02:00 committed by Christian Berendt
parent f5c45d41bb
commit d5d6deb849
1 changed files with 9 additions and 0 deletions

View File

@ -302,6 +302,15 @@ def generate_docbook(project, new_branch, old_list, new_list):
new = format_option_name(new)
dbk_append_row(table, [deprecated, new])
# No new, updated and deprecated options
if not new_opts and not changed_default and not deprecated_opts:
para = etree.Element("para")
para.text = ("There are no new, updated and deprecated options "
"in %(release)s for %(project)s." %
{'release': release,
'project': CODENAME_TITLE[project]})
section.append(para)
return etree.tostring(section, pretty_print=True, xml_declaration=True,
encoding="UTF-8")