Add a separator to list output

This commit is contained in:
Jeff Mitchell 2016-08-30 16:48:48 -04:00
parent 763ab83d34
commit 65ae080c82

View file

@ -97,6 +97,7 @@ func (t TableFormatter) OutputList(ui cli.Ui, secret *api.Secret, list []interfa
input := make([]string, 0, 5)
input = append(input, "Keys")
input = append(input, "----")
keys := make([]string, 0, len(list))
for _, k := range list {