From cef4d12d36beeb1d4f57f77fa4f8347ff89944f0 Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Mon, 13 Oct 2025 21:52:47 +1100 Subject: [PATCH] small cleanup to shell --- crates/g3-execution/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/g3-execution/src/lib.rs b/crates/g3-execution/src/lib.rs index 908c2bc..2f2769b 100644 --- a/crates/g3-execution/src/lib.rs +++ b/crates/g3-execution/src/lib.rs @@ -259,7 +259,7 @@ impl CodeExecutor { line = stderr_lines.next_line() => { match line { Ok(Some(line)) => { - receiver.on_output_line(&format!("stderr: {}", line)); + receiver.on_output_line(&format!("{}", line)); stderr_output.push(line); } Ok(None) => {}, // stderr EOF, continue