From 4a15355c446ccfdc5065ed5bb73f7aaac95ca6a6 Mon Sep 17 00:00:00 2001 From: Devansh-567 Date: Sat, 4 Jul 2026 13:52:31 +0530 Subject: [PATCH] fix(tools): correct extension error message and format string in asciidoclint Signed-off-by: Devansh-567 --- tools/asciidoclint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/asciidoclint.py b/tools/asciidoclint.py index c1d30134..4d0774dd 100755 --- a/tools/asciidoclint.py +++ b/tools/asciidoclint.py @@ -273,7 +273,7 @@ def main(): sys.exit(1) _, ext = os.path.splitext(f) if ext != ".adoc": - print("'{}' does not have an .mdk extension") + print("'{}' does not have an .adoc extension".format(f)) sys.exit(1) conf_path = None