README.md: Improve formatting of headlines for fixed bugs.

This commit is contained in:
Sebastian Lackner
2014-08-13 02:22:57 +02:00
parent 786742620a
commit 7122276309
2 changed files with 4 additions and 4 deletions

View File

@@ -568,13 +568,13 @@ def generate_markdown(all_patches, stable_patches, stable_compholio_version):
# Generate information for current version
lines = []
if len(new_fixes):
lines.append("Fixed bugs for the next release (%d):" % len(new_fixes))
lines.append("**Bugs and features included in the next upcomping release [%d]:**" % len(new_fixes))
lines.append("")
for mode, bugid, bugname in sorted(new_fixes, key=lambda x: x[2]):
lines.append(_format_bug(mode, bugid, bugname))
lines.append("")
lines.append("")
lines.append("Fixed bugs in Wine-Compholio %s (%d):" % (stable_compholio_version, len(old_fixes)))
lines.append("**Bugs fixed in Wine-Compholio %s [%d]:**" % (stable_compholio_version, len(old_fixes)))
lines.append("")
for mode, bugid, bugname in sorted(old_fixes, key=lambda x: x[2]):
lines.append(_format_bug(mode, bugid, bugname))