From 43651ed830c6c16e9889d4e4509e91b158421e63 Mon Sep 17 00:00:00 2001 From: Alex Stephen Date: Tue, 25 Jun 2019 10:18:49 -0700 Subject: [PATCH] format fix --- products/container/helpers/python/kubectl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/products/container/helpers/python/kubectl.py b/products/container/helpers/python/kubectl.py index 9adb3a522288..09f6712a6f06 100644 --- a/products/container/helpers/python/kubectl.py +++ b/products/container/helpers/python/kubectl.py @@ -20,7 +20,7 @@ def write_file(self): """ def _contents(self): token = self._auth_token() - endpoint = "https://{}".format(self.fetch["endpoint"]) + endpoint = "https://%s" % self.fetch["endpoint"] context = self.module.params.get('kubectl_context') if not context: context = self.module.params['name']