summaryrefslogtreecommitdiffstats
path: root/bin/core/imag-annotate/src/ui.rs
diff options
context:
space:
mode:
Diffstat (limited to 'bin/core/imag-annotate/src/ui.rs')
-rw-r--r--bin/core/imag-annotate/src/ui.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/core/imag-annotate/src/ui.rs b/bin/core/imag-annotate/src/ui.rs
index e47a1505..a7bd3364 100644
--- a/bin/core/imag-annotate/src/ui.rs
+++ b/bin/core/imag-annotate/src/ui.rs
@@ -25,7 +25,7 @@ use libimagstore::storeid::StoreId;
use libimagstore::storeid::IntoStoreId;
use libimagrt::runtime::IdPathProvider;
-use failure::Fallible as Result;
+use anyhow::Result;
pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
app
@@ -114,7 +114,7 @@ impl IdPathProvider for PathProvider {
("remove", Some(subm)) => get_id_paths(subm),
("list", Some(subm)) => get_id_paths(subm),
(other, _) => {
- Err(format_err!("Not a known command: {}", other))
+ Err(anyhow!("Not a known command: {}", other))
}
}
}