From 8f4d7c95dfb0130ee2140fcb070b46fff92150f7 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Mon, 9 May 2016 11:05:28 +0100 Subject: [PATCH] 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. --- templating/matrix_templates/units.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/templating/matrix_templates/units.py b/templating/matrix_templates/units.py index 94ba5775..55ea426f 100644 --- a/templating/matrix_templates/units.py +++ b/templating/matrix_templates/units.py @@ -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