Skip to content

Commit

Permalink
fixup! refactor(parser): Clarify where escaping is relevant
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Aug 4, 2022
1 parent 69c4628 commit 53836f5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/parser/parser.rs
Expand Up @@ -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);
Expand Down

0 comments on commit 53836f5

Please sign in to comment.