aboutsummaryrefslogtreecommitdiffstats
path: root/commands/ls.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/ls.go')
-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),