aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-06 00:28:29 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-06 00:28:29 +0530
commit37b5c5457d51b50af1dcadaf7c85be7e7349d682 (patch)
treed920afffe940c1f0ba87f8ab0672eca8b3ad2c74 /cmd
parentccef1f9a0035a5b8e3494bcc22c09ad3acc49097 (diff)
added \n when printing wether user is a MAL supporter
Diffstat (limited to 'cmd')
-rw-r--r--cmd/user_info.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/user_info.go b/cmd/user_info.go
index f737f89..f8c194c 100644
--- a/cmd/user_info.go
+++ b/cmd/user_info.go
@@ -45,7 +45,7 @@ Currently, MyAnimeList doesn't allow reading of other users' profiles.
fmt.Printf("\x1b[1;34mUser ID: \x1b[0m%d\n", userInfo.Id)
if userInfo.IsSupporter {
- fmt.Printf("\x1b[33mYou are a MyAnimeList Supporter.\n\x1b[0m")
+ fmt.Printf("\x1b[33mYou are a MyAnimeList Supporter.\n\x1b[0m\n")
}
},
}