summaryrefslogtreecommitdiff
path: root/sfeed_update
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2021-01-25 19:29:03 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2021-01-27 15:24:02 +0100
commitf1883579dfcb256b514defcece7bf88fe65ee659 (patch)
tree4350eae683d55b937f071fb4a506c0210df0874c /sfeed_update
parent1a17ad48876172fadb6782f1edee2058819770dc (diff)
sfeed_update: change parse failure error message
"(FAIL CONVERT)" -> "(FAIL PARSE)". Convert may be too similar to text encoding conversion.
Diffstat (limited to 'sfeed_update')
-rwxr-xr-xsfeed_update2
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"