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:
Zanie Blue 2025-08-08 09:14:54 -05:00 committed by GitHub
parent 57df0146e2
commit 5c729332c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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"
)