summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fern.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/fern.go b/fern.go
index 4908483..5f766fd 100644
--- a/fern.go
+++ b/fern.go
@@ -47,6 +47,12 @@ func main() {
}
// Wait for all feeds finish processing.
for pState.FeedsProcessing > 0 {
+ fTxt := "feeds"
+ if pState.FeedsProcessing == 1 {
+ fTxt = "feed"
+ }
+ fmt.Printf("Waiting for %d %s to finish processing\n",
+ pState.FeedsProcessing, fTxt)
fr := <-pState.FeedResultChan
if fr.Err == nil {
fmt.Printf("[%s]: %s\n",