Change error message upon line parse failure to be uniform

This commit is contained in:
Cole Helbling 2020-03-15 09:04:14 -07:00
parent 5ee2275b26
commit ba93cc64fb
No known key found for this signature in database
GPG Key ID: B37E0F2371016A4C
1 changed files with 4 additions and 1 deletions

View File

@ -87,7 +87,10 @@ If you wish to merge the two, specify the `--merge` flag."
let line = if let Ok(line) = read_line {
line
} else {
eprintln!("could not read line {}: {:?}", line_number, read_line);
eprintln!(
"could not read entry at line {}: {:?}",
line_number, read_line
);
continue;
};