diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-30 23:26:32 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-30 23:26:32 +0530 |
commit | fa851728d9b327f83f607b3e70f06d2404c4dbd1 (patch) | |
tree | b21fbfde301a823b86c83d9fdf0fe62fd90f9d7e /cmd/episodes.go | |
parent | e95c06245aea024d82c042a2189c2d18b4dc7172 (diff) |
showing more minimal output when updating chapters/episodes
Diffstat (limited to 'cmd/episodes.go')
-rw-r--r-- | cmd/episodes.go | 2 |
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) } |