Fix: Use qualification

This commit is contained in:
Matthias Beyer 2018-04-14 00:57:15 +02:00
parent 207346bea0
commit 51b9b5c0db
8 changed files with 8 additions and 8 deletions

View file

@ -79,7 +79,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-annotation", other, rt.cli()) let _ = rt.handle_unknown_subcommand("imag-annotation", other, rt.cli())
.map_err_trace_exit_unwrap(1) .map_err_trace_exit_unwrap(1)
.code() .code()
.map(std::process::exit); .map(::std::process::exit);
}, },
} }
}); });

View file

@ -98,7 +98,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-store", other, rt.cli()) let _ = rt.handle_unknown_subcommand("imag-store", other, rt.cli())
.map_err_trace_exit_unwrap(1) .map_err_trace_exit_unwrap(1)
.code() .code()
.map(std::process::exit); .map(::std::process::exit);
}, },
}; };
} else { } else {

View file

@ -106,7 +106,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-tag", other, rt.cli()) let _ = rt.handle_unknown_subcommand("imag-tag", other, rt.cli())
.map_err_trace_exit_unwrap(1) .map_err_trace_exit_unwrap(1)
.code() .code()
.map(std::process::exit); .map(::std::process::exit);
}, },
}); });
} }

View file

@ -86,7 +86,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-diary", other, rt.cli()) let _ = rt.handle_unknown_subcommand("imag-diary", other, rt.cli())
.map_err_trace_exit_unwrap(1) .map_err_trace_exit_unwrap(1)
.code() .code()
.map(std::process::exit); .map(::std::process::exit);
}, },
} }
}); });

View file

@ -77,7 +77,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-log", other, rt.cli()) let _ = rt.handle_unknown_subcommand("imag-log", other, rt.cli())
.map_err_trace_exit_unwrap(1) .map_err_trace_exit_unwrap(1)
.code() .code()
.map(std::process::exit); .map(::std::process::exit);
}, },
} }
} else { } else {

View file

@ -74,7 +74,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-mail", other, rt.cli()) let _ = rt.handle_unknown_subcommand("imag-mail", other, rt.cli())
.map_err_trace_exit_unwrap(1) .map_err_trace_exit_unwrap(1)
.code() .code()
.map(std::process::exit); .map(::std::process::exit);
} }
} }
}); });

View file

@ -86,7 +86,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-notes", other, rt.cli()) let _ = rt.handle_unknown_subcommand("imag-notes", other, rt.cli())
.map_err_trace_exit_unwrap(1) .map_err_trace_exit_unwrap(1)
.code() .code()
.map(std::process::exit); .map(::std::process::exit);
}, },
}; };
}); });

View file

@ -71,7 +71,7 @@ fn main() {
let _ = rt.handle_unknown_subcommand("imag-todo", other, rt.cli()) let _ = rt.handle_unknown_subcommand("imag-todo", other, rt.cli())
.map_err_trace_exit_unwrap(1) .map_err_trace_exit_unwrap(1)
.code() .code()
.map(std::process::exit); .map(::std::process::exit);
} }
None => { None => {
warn!("No command"); warn!("No command");