aboutsummaryrefslogtreecommitdiff
path: root/cmd/episodes.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-06-30 23:26:32 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-06-30 23:26:32 +0530
commitfa851728d9b327f83f607b3e70f06d2404c4dbd1 (patch)
treeb21fbfde301a823b86c83d9fdf0fe62fd90f9d7e /cmd/episodes.go
parente95c06245aea024d82c042a2189c2d18b4dc7172 (diff)
showing more minimal output when updating chapters/episodes
Diffstat (limited to 'cmd/episodes.go')
-rw-r--r--cmd/episodes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/episodes.go b/cmd/episodes.go
index d4efc32..05591cd 100644
--- a/cmd/episodes.go
+++ b/cmd/episodes.go
@@ -68,7 +68,7 @@ var episodesCmd = &cobra.Command{
prevEpWatched := selectedAnime.MyListStatus.EpWatched
if queryOnlyMode {
- fmt.Printf("You Have Watched \x1b[1;36m%d\x1b[0m Out Of \x1b[1;33m%d\x1b[0m Wpisodes From \x1b[35m%s\x1b[0m.\n", prevEpWatched, selectedAnime.NumEpisodes, anime.Title)
+ fmt.Printf("\x1b[35m%s\x1b[0m Episodes :: \x1b[1;36m%d\x1b[0m / \x1b[1;33m%d\x1b[0m Watched\n", anime.Title, prevEpWatched, selectedAnime.NumEpisodes)
os.Exit(0)
}