From 6df4e0c5cbcc355042978109d454d53d5037c413 Mon Sep 17 00:00:00 2001 From: Jonathan Brouwer Date: Sun, 6 Sep 2026 14:02:16 +0200 Subject: [PATCH] Fix formatting of errors --- site/src/request_handlers/github.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/src/request_handlers/github.rs b/site/src/request_handlers/github.rs index 3906f9a31..b575980d9 100644 --- a/site/src/request_handlers/github.rs +++ b/site/src/request_handlers/github.rs @@ -308,7 +308,7 @@ For this rollup, these benchmarks are:\n", benchmarks_to_run.len()).unwrap(); Ok(commit) => commit, Err(err) => { writeln!(&mut result, "### {sha}").unwrap(); - writeln!(&mut result, "Failed to get commit: {err}").unwrap(); + writeln!(&mut result, "Failed to get commit: {err}\n").unwrap(); continue; } }; @@ -319,7 +319,7 @@ For this rollup, these benchmarks are:\n", benchmarks_to_run.len()).unwrap(); Ok(r) => r, Err(err) => { writeln!(&mut result, "### {sha}").unwrap(); - writeln!(&mut result, "{err}").unwrap(); + writeln!(&mut result, "{err}\n").unwrap(); continue; } };