Include '..' lines in changelogs

Not all lines starting with '..' are comments, and even if they are comments,
they might as well go into the generated spec ReST.
This commit is contained in:
Richard van der Hoff 2016-05-09 11:05:28 +01:00
parent 86a81b0450
commit 8f4d7c95df

View file

@ -710,8 +710,6 @@ class MatrixUnits(Units):
lines = f.readlines()
prev_line = None
for line in lines:
if line.strip().startswith(".. "):
continue # comment
if prev_line is None:
prev_line = line
continue