mirror of
https://github.com/astral-sh/uv
synced 2026-01-20 21:10:10 -05:00
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:
@@ -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"
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user