diff --git a/crates/uv-python/src/discovery.rs b/crates/uv-python/src/discovery.rs index 0a6d8685b1fdf..9bfef91dbf698 100644 --- a/crates/uv-python/src/discovery.rs +++ b/crates/uv-python/src/discovery.rs @@ -239,7 +239,7 @@ pub enum Error { InvalidVersionRequest(String), // TODO(zanieb): Is this error case necessary still? We should probably drop it. - #[error("Interpreter discovery for `{0}` requires `{1}` but only {2} is allowed")] + #[error("Interpreter discovery for `{0}` requires `{1}` but only `{2}` is allowed")] SourceNotAllowed(PythonRequest, PythonSource, PythonPreference), }