Change error message upon line parse failure to be uniform
This commit is contained in:
parent
5ee2275b26
commit
ba93cc64fb
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue