diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2021-01-25 19:29:03 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2021-01-27 15:24:02 +0100 |
commit | f1883579dfcb256b514defcece7bf88fe65ee659 (patch) | |
tree | 4350eae683d55b937f071fb4a506c0210df0874c | |
parent | 1a17ad48876172fadb6782f1edee2058819770dc (diff) |
sfeed_update: change parse failure error message
"(FAIL CONVERT)" -> "(FAIL PARSE)". Convert may be too similar to text encoding
conversion.
-rwxr-xr-x | sfeed_update | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_update b/sfeed_update index ff9a44a..d975518 100755 --- a/sfeed_update +++ b/sfeed_update @@ -122,7 +122,7 @@ feed() { rm -f "${tmpfeedfile}.fetch" if ! parse "${name}" "${feedurl}" "${basesiteurl}" < "${tmpfeedfile}.utf8" > "${tmpfeedfile}.tsv"; then - log "${name}" "FAIL (CONVERT)" + log "${name}" "FAIL (PARSE)" return fi rm -f "${tmpfeedfile}.utf8" |