aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorSladyn <gunnerforlife00@gmail.com>2019-03-02 23:58:15 +0530
committerSladyn <gunnerforlife00@gmail.com>2019-03-02 23:58:15 +0530
commitf1d5ca4ff4e8f20f21e2cdc65fe854d6f9c16fee (patch)
tree80384da7f761f836edc3668d391376109f388d06 /commands
parent0c42a7c33ef02cdb72b110b65e36e0e426c19359 (diff)
downloadgit-bug-f1d5ca4ff4e8f20f21e2cdc65fe854d6f9c16fee.tar.gz
Rebased and updated.
Diffstat (limited to 'commands')
-rw-r--r--commands/ls.go6
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),