Skip to content

Commit

Permalink
[py] Fix OGS_USE_PATH debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed Aug 14, 2024
1 parent 81e418a commit f561d24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def _program(name, args):
exe = OGS_BIN_DIR / name
if OGS_USE_PATH:
exe = name
print(f"OGS_USE_PATH is true: {name} from $PATH is used!")
print(f"OGS_USE_PATH is true: {name} from $PATH is used!")
return subprocess.run([exe] + args).returncode # noqa: PLW1510

FUNC_TEMPLATE = """def {0}(): raise SystemExit(_program("{0}", sys.argv[1:]))"""
Expand Down

0 comments on commit f561d24

Please sign in to comment.