From 0f19836c02cf078489f76e7cc075c756fbc8c49b Mon Sep 17 00:00:00 2001 From: martclanor Date: Fri, 27 Dec 2024 17:45:11 +0100 Subject: [PATCH] ensure that output of resolve_exe is str --- flopy/mbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flopy/mbase.py b/flopy/mbase.py index ac989f2a6..99e32bf1f 100644 --- a/flopy/mbase.py +++ b/flopy/mbase.py @@ -98,7 +98,7 @@ def _resolve(exe_name): f"The program {exe_name} does not exist or is not executable." ) - return exe_path + return str(exe_path) # external exceptions for users