From c36b7353b2556fb51d77e164eb7eeeb18cbaa726 Mon Sep 17 00:00:00 2001 From: Lauryn Menard Date: Thu, 3 Oct 2024 14:15:15 +0200 Subject: [PATCH] custom-rules: Fix string printed for unmatched_exclude_lines. --- zulint/custom_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zulint/custom_rules.py b/zulint/custom_rules.py index d9b5af7..272d482 100644 --- a/zulint/custom_rules.py +++ b/zulint/custom_rules.py @@ -100,7 +100,7 @@ def check_file_for_pattern( ok = False if unmatched_exclude_lines: - print("Please remove exclusions for file {fn}: {unmatched_exclude_lines}") + print(f"Please remove exclusions for file {fn}: {unmatched_exclude_lines}") return ok