From af39525e5e3ae47e44ed3e43051929a4bad9ea8c Mon Sep 17 00:00:00 2001 From: Ole Herman Schumacher Elgesem Date: Mon, 4 Aug 2025 14:36:09 +0200 Subject: [PATCH] cfdoc_sourcelinks.py: Stopped tolerating missing HTML files Signed-off-by: Ole Herman Schumacher Elgesem --- generator/_scripts/cfdoc_sourcelinks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/_scripts/cfdoc_sourcelinks.py b/generator/_scripts/cfdoc_sourcelinks.py index f3dfe74cb..545a37054 100644 --- a/generator/_scripts/cfdoc_sourcelinks.py +++ b/generator/_scripts/cfdoc_sourcelinks.py @@ -125,7 +125,7 @@ def addLinkToSource(file_name, config): in_file.close() except: print("cfdoc_sourcelinks: Error opening " + html_file) - return 0 # tolerate missing HTML files + return 1 new_html_file = html_file + ".new" out_file = open(new_html_file, "w")