From 984ea720f1dd205027d6eeb13a72db9eedcc15c6 Mon Sep 17 00:00:00 2001 From: Jason Scarano Date: Thu, 23 Jul 2020 13:17:53 -0600 Subject: [PATCH] fix local typo Signed-off-by: Jason Scarano --- pkg/cmd/cli/restore/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/cli/restore/create.go b/pkg/cmd/cli/restore/create.go index 2e051535a..487eaa629 100644 --- a/pkg/cmd/cli/restore/create.go +++ b/pkg/cmd/cli/restore/create.go @@ -136,7 +136,7 @@ func (o *CreateOptions) Complete(args []string, f client.Factory) error { sourceName = o.ScheduleName } - o.RestoreName = fmt.Sprintf("%s-%s", sourceName, time.Now().Forspamat("20060102150405")) + o.RestoreName = fmt.Sprintf("%s-%s", sourceName, time.Now().Format("20060102150405")) } client, err := f.Client()