From 829a23f44683b3d8bcd98c29d342dd26a8915ea3 Mon Sep 17 00:00:00 2001 From: Peter Kleiweg Date: Fri, 27 Mar 2026 13:00:55 +0100 Subject: [PATCH] vrt.go: foutmeldingen met newline --- VRT/cmd/vrt/vrt.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VRT/cmd/vrt/vrt.go b/VRT/cmd/vrt/vrt.go index 6482ae2..8437d1b 100644 --- a/VRT/cmd/vrt/vrt.go +++ b/VRT/cmd/vrt/vrt.go @@ -262,7 +262,7 @@ func doArticle(filename string, url string, title string, tags []string, labels found = true } if !found { - fouten = append(fouten, fmt.Sprintf("no heading: %s", url)) + fouten = append(fouten, fmt.Sprintf("no heading: %s\n", url)) _ = w(fmt.Errorf("no heading: %s", url)) } @@ -277,7 +277,7 @@ func doArticle(filename string, url string, title string, tags []string, labels found = true } if !found { - fouten = append(fouten, fmt.Sprintf("no text: %s", url)) + fouten = append(fouten, fmt.Sprintf("no text: %s\n", url)) _ = w(fmt.Errorf("no text: %s", url)) }