From 7c0df656fa808f11ea13524d3b3db697676343e7 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Mon, 6 Sep 2021 16:27:18 +0200 Subject: [PATCH] Fixing lib/cr_tf/app.py --- lib/cr_tf/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cr_tf/app.py b/lib/cr_tf/app.py index 8bdba3a..fbc76f5 100644 --- a/lib/cr_tf/app.py +++ b/lib/cr_tf/app.py @@ -47,7 +47,7 @@ from .xlate import __base_dir__ as __xlate_base_dir__ from .xlate import __mo_file__ as __xlate_mo_file__ from .xlate import XLATOR, LOCALE_DIR, DOMAIN -__version__ = '1.1.8' +__version__ = '1.1.9' LOG = logging.getLogger(__name__) SIGNAL_NAMES = { @@ -485,7 +485,7 @@ class CrTfApplication(BaseApplication): a=self.appname, v=__pkg_version__)) try: - if self.handler.first_call(yaml_file): + if self.handler.first_call(self.yaml_file): self.verify_vsphere_credentials() self.handler(self.yaml_file) except ExpectedHandlerError as e: -- 2.39.5