Skip to content

Commit

Permalink
add total episode count
Browse files Browse the repository at this point in the history
  • Loading branch information
robinovitch61 committed Apr 14, 2024
1 parent 4cb24ae commit f933e46
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,10 @@ func main() {
}
fmt.Println(
fmt.Sprintf(
"saving episodes %d through %d: added page %d/%d",
"saving episodes %d through %d of %d: added page %d/%d",
episodeBatch.minEp,
episodeBatch.maxEp,
totalEpisodes,
idx+1,
len(episodeBatch.imgLinks),
),
Expand Down

0 comments on commit f933e46

Please sign in to comment.