From a8eb72e7a19f10349987f25c0748bfd2b213c786 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Thu, 5 May 2016 11:06:56 +0100 Subject: [PATCH] Fix changelog generation Gendoc was adding extra newlines to the changelog RST, which messed it all up. --- templating/matrix_templates/units.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templating/matrix_templates/units.py b/templating/matrix_templates/units.py index 2cd145099..81489f63e 100644 --- a/templating/matrix_templates/units.py +++ b/templating/matrix_templates/units.py @@ -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