mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Restore verbatim in error message (#3402)
Fixup for https://github.com/astral-sh/uv/pull/3263#discussion_r1589718035
This commit is contained in:
parent
b2f6b92e3b
commit
d0c3146ef6
1 changed files with 3 additions and 3 deletions
|
@ -228,7 +228,7 @@ fn to_pubgrub(
|
|||
return Err(ResolveError::ConflictingUrlsTransitive(
|
||||
requirement.name.clone(),
|
||||
expected.verbatim().to_string(),
|
||||
url.to_string(),
|
||||
url.verbatim().to_string(),
|
||||
));
|
||||
}
|
||||
|
||||
|
@ -249,7 +249,7 @@ fn to_pubgrub(
|
|||
return Err(ResolveError::ConflictingUrlsTransitive(
|
||||
requirement.name.clone(),
|
||||
expected.verbatim().to_string(),
|
||||
url.to_string(),
|
||||
url.verbatim().to_string(),
|
||||
));
|
||||
}
|
||||
|
||||
|
@ -270,7 +270,7 @@ fn to_pubgrub(
|
|||
return Err(ResolveError::ConflictingUrlsTransitive(
|
||||
requirement.name.clone(),
|
||||
expected.verbatim().to_string(),
|
||||
url.to_string(),
|
||||
url.verbatim().to_string(),
|
||||
));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue