From 190c82d44bc7366fac1a9a7736edeaf1f335e464 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 25 Feb 2025 15:24:59 -0600 Subject: [PATCH] Improve error message when a function cannot be commented --- db/schemas/gen_comments.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/db/schemas/gen_comments.py b/db/schemas/gen_comments.py index 42034ba..c369319 100755 --- a/db/schemas/gen_comments.py +++ b/db/schemas/gen_comments.py @@ -189,7 +189,9 @@ class DBObj: NoSQLFragmentError( "There is no generated file with SQL fragments for the" f" function: {objname}\nPerhaps you have not put all the" - " functions into the database?\nThe error raised is:" + " functions into the database. Or perhaps the function's" + " schema is not listed in db/schemas/Makefile as having" + " comments.\nThe error raised is:" f" {err}" ) ) -- 2.34.1