imag-tag: Replace .err().unwrap() with .unwrap_err()

This commit is contained in:
Matthias Beyer 2016-04-17 21:07:47 +02:00
parent cd73be256b
commit c8e5ea49ce

View file

@ -32,7 +32,7 @@ fn main() {
rt.unwrap() rt.unwrap()
} else { } else {
println!("Could not set up Runtime"); println!("Could not set up Runtime");
println!("{:?}", rt.err().unwrap()); println!("{:?}", rt.unwrap_err());
exit(1); exit(1);
} }
}; };
@ -127,7 +127,7 @@ fn list(id: &str, rt: &Runtime) {
if entry.is_err() { if entry.is_err() {
debug!("Could not retrieve '{:?}' => {:?}", id, path); debug!("Could not retrieve '{:?}' => {:?}", id, path);
warn!("Could not retrieve entry '{}'", id); warn!("Could not retrieve entry '{}'", id);
trace_error(&entry.err().unwrap()); trace_error(&entry.unwrap_err());
exit(1); exit(1);
} }
let entry = entry.unwrap(); let entry = entry.unwrap();
@ -146,7 +146,7 @@ fn list(id: &str, rt: &Runtime) {
let tags = entry.get_tags(); let tags = entry.get_tags();
if tags.is_err() { if tags.is_err() {
trace_error(&tags.err().unwrap()); trace_error(&tags.unwrap_err());
exit(1); exit(1);
} }
let tags = tags.unwrap(); let tags = tags.unwrap();