Fix: Use qualification
This commit is contained in:
parent
207346bea0
commit
51b9b5c0db
8 changed files with 8 additions and 8 deletions
|
@ -79,7 +79,7 @@ fn main() {
|
|||
let _ = rt.handle_unknown_subcommand("imag-annotation", other, rt.cli())
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.code()
|
||||
.map(std::process::exit);
|
||||
.map(::std::process::exit);
|
||||
},
|
||||
}
|
||||
});
|
||||
|
|
|
@ -98,7 +98,7 @@ fn main() {
|
|||
let _ = rt.handle_unknown_subcommand("imag-store", other, rt.cli())
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.code()
|
||||
.map(std::process::exit);
|
||||
.map(::std::process::exit);
|
||||
},
|
||||
};
|
||||
} else {
|
||||
|
|
|
@ -106,7 +106,7 @@ fn main() {
|
|||
let _ = rt.handle_unknown_subcommand("imag-tag", other, rt.cli())
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.code()
|
||||
.map(std::process::exit);
|
||||
.map(::std::process::exit);
|
||||
},
|
||||
});
|
||||
}
|
||||
|
|
|
@ -86,7 +86,7 @@ fn main() {
|
|||
let _ = rt.handle_unknown_subcommand("imag-diary", other, rt.cli())
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.code()
|
||||
.map(std::process::exit);
|
||||
.map(::std::process::exit);
|
||||
},
|
||||
}
|
||||
});
|
||||
|
|
|
@ -77,7 +77,7 @@ fn main() {
|
|||
let _ = rt.handle_unknown_subcommand("imag-log", other, rt.cli())
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.code()
|
||||
.map(std::process::exit);
|
||||
.map(::std::process::exit);
|
||||
},
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -74,7 +74,7 @@ fn main() {
|
|||
let _ = rt.handle_unknown_subcommand("imag-mail", other, rt.cli())
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.code()
|
||||
.map(std::process::exit);
|
||||
.map(::std::process::exit);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -86,7 +86,7 @@ fn main() {
|
|||
let _ = rt.handle_unknown_subcommand("imag-notes", other, rt.cli())
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.code()
|
||||
.map(std::process::exit);
|
||||
.map(::std::process::exit);
|
||||
},
|
||||
};
|
||||
});
|
||||
|
|
|
@ -71,7 +71,7 @@ fn main() {
|
|||
let _ = rt.handle_unknown_subcommand("imag-todo", other, rt.cli())
|
||||
.map_err_trace_exit_unwrap(1)
|
||||
.code()
|
||||
.map(std::process::exit);
|
||||
.map(::std::process::exit);
|
||||
}
|
||||
None => {
|
||||
warn!("No command");
|
||||
|
|
Loading…
Reference in a new issue