From 539851e3e83a8cf35b82d3b2d5fd09967c2afd87 Mon Sep 17 00:00:00 2001 From: epi Date: Sat, 20 Jan 2024 16:19:23 -0500 Subject: [PATCH] headers with commas from cli should parse correctly --- src/parser.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/parser.rs b/src/parser.rs index 19056d2e..212b5912 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -211,7 +211,6 @@ pub fn initialize() -> Command { .num_args(1..) .action(ArgAction::Append) .help_heading("Request settings") - .use_value_delimiter(true) .help( "Specify HTTP headers to be used in each request (ex: -H Header:val -H 'stuff: things')", ),