From 017e7e0449faf4cbede2db1d78355e527dad01d7 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Wed, 27 Sep 2023 23:10:23 -0500 Subject: [PATCH] Fix removal of leading empty lines --- doc/extract_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/extract_view.py b/doc/extract_view.py index 7f0ae82..9b78229 100755 --- a/doc/extract_view.py +++ b/doc/extract_view.py @@ -48,7 +48,7 @@ def cleanup(body): are empty or consist only of whitespace. And remove all trailing lines that match SQL_COMMENT. """ - while body[0].strip == "": + while body[0].strip() == "": del body[0] for pos in range(len(body) - 1, -1, -1): -- 2.34.1