From d442ccfd8de9765da87d637932a795a5e889a89e Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc kop@karlpinc.com" Date: Mon, 9 Oct 2023 01:52:47 +0000 Subject: [PATCH] Only look for db comments in *.rst files --- db/schemas/gen_comments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/schemas/gen_comments.py b/db/schemas/gen_comments.py index b81fd03..800d44a 100755 --- a/db/schemas/gen_comments.py +++ b/db/schemas/gen_comments.py @@ -316,7 +316,7 @@ def comments_from_file(file, db_objs): def traverse_rst(rst_dir, db_objs): """Traverse the directory structure and process all files""" for entry in rst_dir.iterdir(): - if entry.is_file(): + if entry.is_file() and entry.name[-4:] == ".rst": comments_from_file(entry, db_objs) if entry.is_dir(): traverse_rst(entry, db_objs) -- 2.34.1