From e6a3aea88ae8d9b1595cce1f09ed9e5fa0ed39ca Mon Sep 17 00:00:00 2001 From: Jim Bugwadia Date: Tue, 18 Aug 2020 21:56:43 -0700 Subject: [PATCH] fix print --- pkg/kyverno/common/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kyverno/common/common.go b/pkg/kyverno/common/common.go index 8589c6e242..85425c5c8f 100644 --- a/pkg/kyverno/common/common.go +++ b/pkg/kyverno/common/common.go @@ -61,7 +61,7 @@ func GetPolicies(paths []string) (policies []*v1.ClusterPolicy, error error) { } if errString != "" { - fmt.Println("failed to extract policies: %s", errString) + fmt.Printf("failed to extract policies: %s\n", errString) os.Exit(2) }