Fix changelog generation
Gendoc was adding extra newlines to the changelog RST, which messed it all up.
This commit is contained in:
parent
be09cd859d
commit
a8eb72e7a1
1 changed files with 1 additions and 1 deletions
|
@ -707,7 +707,7 @@ class MatrixUnits(Units):
|
|||
changelog_lines.pop()
|
||||
break
|
||||
changelog_lines.append(" " + line)
|
||||
changelogs[name] = "\n".join(changelog_lines)
|
||||
changelogs[name] = "".join(changelog_lines)
|
||||
|
||||
return changelogs
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue