From 53836f583ce9645b07a7c8a6a33802b7261a1272 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 3 Aug 2022 23:53:33 -0500 Subject: [PATCH] fixup! refactor(parser): Clarify where escaping is relevant --- src/parser/parser.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/parser/parser.rs b/src/parser/parser.rs index 64f395943b1..eef4b14b5e2 100644 --- a/src/parser/parser.rs +++ b/src/parser/parser.rs @@ -1351,10 +1351,7 @@ impl<'help, 'cmd> Parser<'help, 'cmd> { if let Some((_, Some(ref val))) = arg.env { let val = RawOsStr::new(val); - debug!( - "Parser::add_env: Found an opt with value={:?}", - val, trailing_values - ); + debug!("Parser::add_env: Found an opt with value={:?}", val,); let mut arg_values = Vec::new(); let _parse_result = self.split_arg_values(arg, &val, trailing_values, &mut arg_values);