diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-30 21:02:30 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-30 21:02:30 +0530 |
commit | cdc3989de0a1f190d9fad14d6459f66349f385ef (patch) | |
tree | 93dda417ad63ca22e3229b9af772b41c7454135c /cmd/episodes.go | |
parent | 551b158d207d99d439cad39b512a21a6e8bd0c54 (diff) |
added version command
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 e26e190..d4efc32 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 episodes from \x1b[35m%s\x1b[0m\n", prevEpWatched, selectedAnime.NumEpisodes, anime.Title) + 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) os.Exit(0) } |