diff options
author | Sladyn <gunnerforlife00@gmail.com> | 2019-03-02 23:58:15 +0530 |
---|---|---|
committer | Sladyn <gunnerforlife00@gmail.com> | 2019-03-02 23:58:15 +0530 |
commit | f1d5ca4ff4e8f20f21e2cdc65fe854d6f9c16fee (patch) | |
tree | 80384da7f761f836edc3668d391376109f388d06 /commands | |
parent | 0c42a7c33ef02cdb72b110b65e36e0e426c19359 (diff) | |
download | git-bug-f1d5ca4ff4e8f20f21e2cdc65fe854d6f9c16fee.tar.gz |
Rebased and updated.
Diffstat (limited to 'commands')
-rw-r--r-- | commands/ls.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/commands/ls.go b/commands/ls.go index 7dbac96e..75819f1a 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -52,14 +52,10 @@ func runLsBug(cmd *cobra.Command, args []string) error { // truncate + pad if needed titleFmt := fmt.Sprintf("%-50.50s", b.Title) - authorFmt := fmt.Sprintf("%-15.15s", b.Author.Name) + authorFmt := fmt.Sprintf("%-15.15s", b.LegacyAuthor.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), |