Skip to content

Commit 5bf7544

Browse files
committed
Update python client binary error message
1 parent 6c18294 commit 5bf7544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/workloads/cortex/client/cortex/binary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def get_cli_path() -> str:
137137
cli_path = p
138138
except FileNotFoundError as e:
139139
raise Exception(
140-
f"unable to find cortex binary at {cli_path}, please reinstall the cortex client by running `pip uninstall cortex` and then `pip install cortex`"
140+
"unable to find cortex binary, please reinstall the cortex client by running `pip uninstall cortex` and then `pip install cortex`"
141141
) from e
142142

143143
return str(cli_path)

0 commit comments

Comments
 (0)