diff options
author | Sladyn <gunnerforlife00@gmail.com> | 2019-03-01 20:00:07 +0530 |
---|---|---|
committer | Sladyn <gunnerforlife00@gmail.com> | 2019-03-02 23:06:55 +0530 |
commit | beecd2dbe449e551d08668adf0b8ace427d09c49 (patch) | |
tree | 6b7f517508cc0dc9cc8a9ae83d7017c0b0581254 /commands | |
parent | 43e56692e832bcb4ef39f745ec9fbaf7360052de (diff) | |
download | git-bug-beecd2dbe449e551d08668adf0b8ace427d09c49.tar.gz |
Made requested changes
Made changes to the doc files and remaining areas which required updation.
Diffstat (limited to 'commands')
-rw-r--r-- | commands/ls.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/ls.go b/commands/ls.go index e40f3542..7dbac96e 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -55,11 +55,15 @@ func runLsBug(cmd *cobra.Command, args []string) error { authorFmt := fmt.Sprintf("%-15.15s", b.Author.Name) fmt.Printf("%s %s\t%s\t%s\tC:%d L:%d\n", +<<<<<<< HEAD colors.Cyan(b.HumanId()), +======= + colors.Cyan(b.Id), +>>>>>>> Made requested changes colors.Yellow(b.Status), titleFmt, colors.Magenta(authorFmt), - b.NoOfComments, + b.LenComments, len(b.Labels), ) } |