aboutsummaryrefslogtreecommitdiff
path: root/gerbolyze/__init__.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2023-04-11 00:40:53 +0200
committerjaseg <git@jaseg.de>2023-04-11 00:40:53 +0200
commit9d7fd8b3b4fbc1e2cfe44259da7e6b16d35234e3 (patch)
tree508bf91c9d79295f919c7b4066547ec57235bee7 /gerbolyze/__init__.py
parenta02ff5fc87345c4ea490d7621acccad419f6360b (diff)
downloadgerbolyze-9d7fd8b3b4fbc1e2cfe44259da7e6b16d35234e3.tar.gz
gerbolyze-9d7fd8b3b4fbc1e2cfe44259da7e6b16d35234e3.tar.bz2
gerbolyze-9d7fd8b3b4fbc1e2cfe44259da7e6b16d35234e3.zip
Fix failing tests
Diffstat (limited to 'gerbolyze/__init__.py')
-rwxr-xr-xgerbolyze/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gerbolyze/__init__.py b/gerbolyze/__init__.py
index 936821f..e8bb934 100755
--- a/gerbolyze/__init__.py
+++ b/gerbolyze/__init__.py
@@ -420,7 +420,7 @@ def run_cargo_command(binary, *args, **kwargs):
for cand in candidates:
try:
- logging.debug(f'using {binary}: {cand}')
+ logging.debug(f'trying {binary}: {cand}')
logging.debug(f'with args: {" ".join(cmd_args)}')
res = subprocess.run([cand, *cmd_args], check=True)
break