From 089ea25c103a63620378b852fe27cb819bd64f29 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Sat, 17 Aug 2024 18:11:36 +0200 Subject: [PATCH] Adjusted error description to make more sense. --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript b/SConscript index b652196..90eefb0 100644 --- a/SConscript +++ b/SConscript @@ -177,7 +177,7 @@ def _find_lib(env: Environment, name: str, paths: 'list[str]', type : str = 'sta return lib_path if allow_fail: return None - raise Exception(f'Could not find library with name {name} in paths: "{", ".join(paths)}" with name: "{fname}".') + raise Exception(f'Could not find library with name {name} in paths: "{", ".join(paths)}" filename: "{fname}".') def _error(env: Environment, message: str): print(message, file=sys.stderr)