aboutsummaryrefslogtreecommitdiffstats
path: root/commands/ls.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-15 01:43:20 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-15 01:43:20 +0200
commit1e4562e9991df974a959774d3a919ed190a4351b (patch)
tree690da6e29ac5fc3ca5599087fe97d6950d7e623d /commands/ls.go
parentdfefba09ee706d2804969dc751c57a77f0d77bbf (diff)
downloadgit-bug-1e4562e9991df974a959774d3a919ed190a4351b.tar.gz
ls: better output
Diffstat (limited to 'commands/ls.go')
-rw-r--r--commands/ls.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/ls.go b/commands/ls.go
index 2101dc84..631afb5e 100644
--- a/commands/ls.go
+++ b/commands/ls.go
@@ -22,7 +22,7 @@ func RunLsBug(repo repository.Repo, args []string) error {
snapshot := bug.Compile()
- fmt.Printf("%s %s\n", bug.HumanId(), snapshot.Title)
+ fmt.Printf("%s %s\t%s\n", bug.HumanId(), snapshot.Title, snapshot.Summary())
}
return nil