Skip to content

Commit 83271f0

Browse files
authored
Fix double space typo (#12171)
1 parent d2b9ffd commit 83271f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/uv-resolver/src/lock/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4754,7 +4754,7 @@ impl std::fmt::Display for LockErrorHint {
47544754
if let Some(version) = version {
47554755
write!(
47564756
f,
4757-
"{}{} You're using {}, but `{}` ({}) only has wheels with the following Python ABI tag{s}: {}",
4757+
"{}{} You're using {}, but `{}` ({}) only has wheels with the following Python ABI tag{s}: {}",
47584758
"hint".bold().cyan(),
47594759
":".bold(),
47604760
best,

crates/uv/tests/it/sync.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4669,7 +4669,7 @@ fn sync_wheel_url_source_error() -> Result<()> {
46694669
Resolved 3 packages in [TIME]
46704670
error: Distribution `cffi==1.17.1 @ direct+https://files.pythonhosted.org/packages/08/fd/cc2fedbd887223f9f5d170c96e57cbf655df9831a6546c1727ae13fa977a/cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl` can't be installed because the binary distribution is incompatible with the current platform
46714671
4672-
hint: You're using CPython 3.12 (`cp312`), but `cffi` (v1.17.1) only has wheels with the following Python ABI tag: `cp310`
4672+
hint: You're using CPython 3.12 (`cp312`), but `cffi` (v1.17.1) only has wheels with the following Python ABI tag: `cp310`
46734673
"###);
46744674

46754675
Ok(())
@@ -4720,7 +4720,7 @@ fn sync_wheel_path_source_error() -> Result<()> {
47204720
Resolved 3 packages in [TIME]
47214721
error: Distribution `cffi==1.17.1 @ path+cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl` can't be installed because the binary distribution is incompatible with the current platform
47224722
4723-
hint: You're using CPython 3.12 (`cp312`), but `cffi` (v1.17.1) only has wheels with the following Python ABI tag: `cp310`
4723+
hint: You're using CPython 3.12 (`cp312`), but `cffi` (v1.17.1) only has wheels with the following Python ABI tag: `cp310`
47244724
"###);
47254725

47264726
Ok(())

0 commit comments

Comments
 (0)