Fix lease_renewable output

This commit is contained in:
A.I
2015-05-02 19:58:48 -07:00
parent 6db89d2a95
commit f42a100d03

View File

@@ -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 {