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 {
|
let line = if let Ok(line) = read_line {
|
||||||
line
|
line
|
||||||
} else {
|
} else {
|
||||||
eprintln!("could not read line {}: {:?}", line_number, read_line);
|
eprintln!(
|
||||||
|
"could not read entry at line {}: {:?}",
|
||||||
|
line_number, read_line
|
||||||
|
);
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue