From 3b20d6890c5292903902d0f606dda517454fbab0 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Mon, 17 Apr 2023 07:47:08 -0500 Subject: [PATCH] remove debug print bug (#8909) # Description Oops. Someone just found a eprintln that I left in the code 3 weeks ago. This removes that debug message. --- crates/nu-command/src/filters/par_each.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/nu-command/src/filters/par_each.rs b/crates/nu-command/src/filters/par_each.rs index a21fbee945..18a338ed99 100644 --- a/crates/nu-command/src/filters/par_each.rs +++ b/crates/nu-command/src/filters/par_each.rs @@ -279,7 +279,6 @@ impl Command for ParEach { // This match allows non-iterables to be accepted, // which is currently considered undesirable (Nov 2022). PipelineData::Value(x, ..) => { - eprint!("value"); let block = engine_state.get_block(block_id); if let Some(var) = block.signature.get_positional(0) {