From bc3754ae31563f1142a7c79591f726f6bd960c55 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 1 Oct 2023 16:56:21 -0500 Subject: [PATCH] Empty lines do not end indent blocks --- db/schemas/gen_comments.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/schemas/gen_comments.py b/db/schemas/gen_comments.py index 69cc4bc..8e2f96d 100755 --- a/db/schemas/gen_comments.py +++ b/db/schemas/gen_comments.py @@ -218,7 +218,7 @@ def comments_from_file(file, db_objs): lineno = 1 for line in fd: if in_match: - if line[0:indent] == prefix: + if line[0:indent] == prefix or line == "\n": comment.append(line[indent:]) else: db_obj = db_objs[obj_name] @@ -226,7 +226,7 @@ def comments_from_file(file, db_objs): sql = [SQL["column"].format(name=obj)] else: sql = db_obj.sql - db_obj.cf.write(sql, "".join(comment)[:-1]) + db_obj.cf.write(sql, "".join(comment).rstrip()) in_match = False if not in_match: match = OBJ_SUMMARY.match(line) -- 2.34.1