Skip to content

Commit 669a051

Browse files
authored
fix(cli): usage date string parsed incorrectly (#456)
fixes #453 Signed-off-by: Andrew Hill <andrew@textile.io>
1 parent e253d60 commit 669a051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/hub/cli/billing.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Use the --user flag to get usage for a dependent user.`,
9090
cmd.RenderTable(header, rows)
9191
if !cus.Billable && cus.GracePeriodEnd > 0 {
9292
ends := time.Unix(cus.GracePeriodEnd, 0).Format("02-Jan-06 15:04 -0700")
93-
cmd.Warn("Free quota grace period ends: %d", aurora.Bold(ends))
93+
cmd.Warn("Free quota grace period ends: %s", aurora.Bold(ends))
9494
}
9595
},
9696
}

0 commit comments

Comments
 (0)