fix(Errors): tones down quoting in some error messages

Closes #309
This commit is contained in:
Kevin K 2015-10-13 13:46:35 -04:00
parent 6bd1bd8ca8
commit 34ce59ede5

View file

@ -1645,7 +1645,7 @@ impl<'a, 'v, 'ab, 'u, 'h, 'ar> App<'a, 'v, 'ab, 'u, 'h, 'ar>{
.collect(),
Some(matches))
.iter()
.fold(String::new(), |acc, s| acc + &format!("\n\t'{}'",
.fold(String::new(), |acc, s| acc + &format!("\n\t{}",
Format::Error(s))[..]))
},
ClapErrorType::MissingSubcommand => {