Fix/newline windows (#18)

* fix #17: use fmt.Println() after stats
* bump version
This commit is contained in:
T.v.Dein
2023-12-22 18:59:08 +01:00
committed by Thomas von Dein
parent 2a8f53ca98
commit f901af4f0c
2 changed files with 4 additions and 3 deletions

View File

@@ -131,10 +131,11 @@ func Main() int {
if conf.StatsCountAds == 1 {
adstr = "ad"
}
fmt.Printf("Successfully downloaded %d %s with %d images to %s.\n",
fmt.Printf("Successfully downloaded %d %s with %d images to %s.",
conf.StatsCountAds, adstr, conf.StatsCountImages, conf.Outdir)
fmt.Println()
} else {
fmt.Printf("No ads found.")
fmt.Println("No ads found.")
}
return 0