mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-20 16:38:37 +01:00
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
|
|
@ -707,7 +707,7 @@ class MatrixUnits(Units):
|
||||||
changelog_lines.pop()
|
changelog_lines.pop()
|
||||||
break
|
break
|
||||||
changelog_lines.append(" " + line)
|
changelog_lines.append(" " + line)
|
||||||
changelogs[name] = "\n".join(changelog_lines)
|
changelogs[name] = "".join(changelog_lines)
|
||||||
|
|
||||||
return changelogs
|
return changelogs
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue