1
Fork 0

Opps, fix incorrect call

This commit is contained in:
Ivan Ivaschenko 2015-11-06 13:52:17 +02:00
parent 0ccd883e7f
commit 1ebdb734aa

View file

@ -1137,7 +1137,7 @@ impl error::Error for CliError {
// implementations.
match *self {
CliError::Io(ref err) => err.description(),
CliError::Parse(ref err) => err.description(err),
CliError::Parse(ref err) => err.description(),
}
}