From 19dc62a3e33cb3a77d9909ecbb1a96897d03e343 Mon Sep 17 00:00:00 2001 From: John Gardiner Myers Date: Sat, 11 Jan 2020 20:13:22 -0800 Subject: [PATCH] Fix staticcheck error --- upup/pkg/fi/cloudup/apply_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upup/pkg/fi/cloudup/apply_cluster.go b/upup/pkg/fi/cloudup/apply_cluster.go index 2f755dd6b3..2cd305c165 100644 --- a/upup/pkg/fi/cloudup/apply_cluster.go +++ b/upup/pkg/fi/cloudup/apply_cluster.go @@ -1053,7 +1053,7 @@ func (c *ApplyClusterCmd) validateKubernetesVersion() error { fmt.Printf("\n") fmt.Printf("More information: %s\n", buildPermalink("upgrade_k8s", OldestRecommendedKubernetesVersion)) fmt.Printf("\n") - fmt.Printf(starline) + fmt.Printf("%s\n", starline) fmt.Printf("\n") return fmt.Errorf("kubernetes upgrade is required") }