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())
.map_err_trace_exit_unwrap(1)
.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())
.map_err_trace_exit_unwrap(1)
.code()
.map(std::process::exit);
.map(::std::process::exit);
},
};
} else {

View File

@ -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);
},
});
}

View File

@ -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);
},
}
});

View File

@ -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 {

View File

@ -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);
}
}
});

View File

@ -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);
},
};
});

View File

@ -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");