From 44c6e9a239b475c2eccbec75d1cee1332d612350 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Tue, 24 Sep 2024 15:40:58 +0100 Subject: [PATCH] exekall: Add missing f-string prefix FIX --- tools/exekall/src/exekall/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/exekall/src/exekall/_utils.py b/tools/exekall/src/exekall/_utils.py index 5c49dd94b..05a5d240c 100644 --- a/tools/exekall/src/exekall/_utils.py +++ b/tools/exekall/src/exekall/_utils.py @@ -558,7 +558,7 @@ def infer_mod_name(python_src, package_roots=None, excep_handler=None): else: break else: - raise ValueError('Could not find {python_src} in any of the package roots: {package_roots}') + raise ValueError(f'Could not find {python_src} in any of the package roots: {package_roots}') # Pick the longest path of both paths = [module_path1, module_path2] -- GitLab