From 306e78e4b4d9bd0276b48f069893afa8bc1ed81c Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Wed, 10 Nov 2021 09:58:14 +0100 Subject: [PATCH] Fixing typo in lib/cr_vmware_tpl/handler.py --- lib/cr_vmware_tpl/handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cr_vmware_tpl/handler.py b/lib/cr_vmware_tpl/handler.py index 03b6c05..dd153ab 100644 --- a/lib/cr_vmware_tpl/handler.py +++ b/lib/cr_vmware_tpl/handler.py @@ -44,7 +44,7 @@ from .cobbler import Cobbler from .xlate import XLATOR -__version__ = '1.8.4' +__version__ = '1.8.5' LOG = logging.getLogger(__name__) TZ = pytz.timezone('Europe/Berlin') @@ -474,7 +474,7 @@ class CrTplHandler(BaseHandler): except Exception as e: msg = _( "Got no recommendation for a datastore from VSphere storageResourceManager: " - "{c} - {e}").format(c=e.__class.__name__, e=e) + "{c} - {e}").format(c=e.__class__.__name__, e=e) LOG.warn(msg) return None -- 2.39.5