mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
Fixed #1622
This commit is contained in:
parent
19c20f7c00
commit
444bce2471
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ impl<'b, 'c, 'z> Validator<'b, 'c, 'z> {
|
||||||
if v.contains(&name) {
|
if v.contains(&name) {
|
||||||
return Err(Error::argument_conflict(
|
return Err(Error::argument_conflict(
|
||||||
a,
|
a,
|
||||||
Some(a.to_string()),
|
Some(name.to_string()),
|
||||||
&*usg,
|
&*usg,
|
||||||
self.p.app.color(),
|
self.p.app.color(),
|
||||||
));
|
));
|
||||||
|
|
Loading…
Reference in a new issue