Remove useless blank line removal in ChangeLog.write

The parsing functions eliminate blank lines, so there shouldn't be any
at this stage.
diff --git a/scripts/assemble_changelog.py b/scripts/assemble_changelog.py
index 1d47557..a5a114c 100755
--- a/scripts/assemble_changelog.py
+++ b/scripts/assemble_changelog.py
@@ -168,10 +168,6 @@
             for line in self.header:
                 out.write(line)
             for section, lines in self.section_content.items():
-                while lines and not lines[0].strip():
-                    del lines[0]
-                while lines and not lines[-1].strip():
-                    del lines[-1]
                 if not lines:
                     continue
                 out.write(b'### ' + section + b'\n\n')