From 5b716c4e50f2a4e829de3f474125cdac8de11c79 Mon Sep 17 00:00:00 2001 From: konsti Date: Thu, 17 Jul 2025 22:37:35 +0200 Subject: [PATCH] Add missing trailing newline to outdated error (#14689) Unlike the other branch in match, which uses a fully formatted error, we need to print the newline ourselves. Before (top) and after (bottom): image --- crates/uv/src/commands/diagnostics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/src/commands/diagnostics.rs b/crates/uv/src/commands/diagnostics.rs index 02412d683..f24aa3406 100644 --- a/crates/uv/src/commands/diagnostics.rs +++ b/crates/uv/src/commands/diagnostics.rs @@ -128,7 +128,7 @@ impl OperationDiagnostic { None } pip::operations::Error::OutdatedEnvironment => { - anstream::eprint!("{}", err); + anstream::eprintln!("{}", err); None } err => Some(err),