From 28d21570020143401b9be3000fdcbb4733d8c37a Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Mon, 16 Jan 2023 18:32:56 +0000 Subject: [PATCH] Change print to print_err for an error message Signed-off-by: David Horstmann --- scripts/code_style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/code_style.py b/scripts/code_style.py index e26d42e9c..6222dbad4 100755 --- a/scripts/code_style.py +++ b/scripts/code_style.py @@ -158,7 +158,7 @@ def fix_style(src_file_list: List[str]) -> int: # Guard against future changes that cause the codebase to require # more passes. if not check_style_is_correct(src_file_list): - print("Code style still incorrect after second run of Uncrustify.") + print_err("Code style still incorrect after second run of Uncrustify.") return 1 else: return 0