mirror of https://github.com/astral-sh/uv
Use `\n` instead of linesep in not found error message (#15166)
https://github.com/astral-sh/uv/pull/14182#discussion_r2262979815
This commit is contained in:
parent
57df0146e2
commit
5c729332c1
|
|
@ -48,7 +48,7 @@ def find_uv_bin() -> str:
|
|||
|
||||
raise UvNotFound(
|
||||
f"Could not find the uv binary in any of the following locations:\n"
|
||||
f"{os.linesep.join(f' - {target}' for target in seen)}\n"
|
||||
f"{'\n'.join(f' - {target}' for target in seen)}\n"
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue