Skip to content

Commit

Permalink
ensure that output of resolve_exe is str
Browse files Browse the repository at this point in the history
  • Loading branch information
martclanor committed Dec 27, 2024
1 parent 9d952a9 commit b351659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flopy/mbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b351659

Please sign in to comment.