From f42a100d03e889cc79ea04cacc77c29c450fb012 Mon Sep 17 00:00:00 2001 From: "A.I" Date: Sat, 2 May 2015 19:58:48 -0700 Subject: [PATCH] Fix lease_renewable output --- command/format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/format.go b/command/format.go index c8974448ed..d3fad141a4 100644 --- a/command/format.go +++ b/command/format.go @@ -50,7 +50,7 @@ func outputFormatTable(ui cli.Ui, s *api.Secret, whitespace bool) int { input = append(input, fmt.Sprintf( "lease_duration %s %d", config.Delim, s.LeaseDuration)) input = append(input, fmt.Sprintf( - "lease_renewable %s %d", config.Delim, strconv.FormatBool(s.Renewable))) + "lease_renewable %s %s", config.Delim, strconv.FormatBool(s.Renewable))) } for k, v := range s.Data {