diff --git a/src/parse/errors.rs b/src/parse/errors.rs index 6a905678..93b46e51 100644 --- a/src/parse/errors.rs +++ b/src/parse/errors.rs @@ -870,7 +870,7 @@ impl Error { val: String, err: Box, ) -> Self { - Self::value_validation_with_color(arg, val, err, ColorChoice::Auto) + Self::value_validation_with_color(arg, val, err, ColorChoice::Never) } fn value_validation_with_color( @@ -996,7 +996,7 @@ impl Error { } pub(crate) fn argument_not_found_auto(arg: String) -> Self { - let mut c = Colorizer::new(true, ColorChoice::Auto); + let mut c = Colorizer::new(true, ColorChoice::Never); start_error(&mut c, "The argument '"); c.warning(arg.clone());