From 65ae080c822c2a008f1ef285330b8cc8f30f93c0 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Tue, 30 Aug 2016 16:48:48 -0400 Subject: [PATCH] Add a separator to list output --- command/format.go | 1 + 1 file changed, 1 insertion(+) diff --git a/command/format.go b/command/format.go index 9fa425bff8..bf51e0d97b 100644 --- a/command/format.go +++ b/command/format.go @@ -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 {