Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
Serial 2022-03-22 19:07:59 -04:00
parent c51de47696
commit 182d980395
2 changed files with 3 additions and 3 deletions

View File

@ -91,7 +91,7 @@ impl Db {
[],
);
if let Err(e) = cmd {
if cmd.is_err() {
log::error!("Failed to create DB table");
process::exit(-1);
}
@ -101,7 +101,7 @@ impl Db {
[],
);
if let Err(e) = cmd {
if cmd.is_err() {
log::error!("Failed to create DB index");
process::exit(-1);
}

View File

@ -51,7 +51,7 @@ fn main() {
logging
);
let ignore_file_help = format!(
"File containg items to mark as ignored. (default: {})",
"File contains items to mark as ignored. (default: {})",
ignore_file
);
let lms_host_help = format!("LMS hostname or IP address (default: {})", &lms_host);