From aa5d2afa4d3aaa3a6140457ce52ff6e867ca7d9d Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Fri, 19 Oct 2018 10:25:49 -0500 Subject: [PATCH] Stop shouting at users in error messages --- tools/build_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_api.py b/tools/build_api.py index dffa70f111..7421518f97 100644 --- a/tools/build_api.py +++ b/tools/build_api.py @@ -533,7 +533,7 @@ def build_project(src_paths, build_path, target, toolchain_name, if linker_script is not None: resources.add_file_ref(linker_script, linker_script) if not resources.get_file_refs(FileType.LD_SCRIPT): - raise NotSupportedException("No Linker Script found!") + raise NotSupportedException("No Linker Script found") # Compile Sources objects = toolchain.compile_sources(resources, sorted(resources.get_file_paths(FileType.INC_DIR)))