From d25662e2163017440f13e2374b1da83063818b07 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Tue, 10 Oct 2023 10:29:28 +0200 Subject: [PATCH] Moving lib/cr_vmware_tpl/handler.py to lib/cr_vmware_tpl/handler/__init__.py --- .../{handler.py => handler/__init__.py} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) rename lib/cr_vmware_tpl/{handler.py => handler/__init__.py} (99%) diff --git a/lib/cr_vmware_tpl/handler.py b/lib/cr_vmware_tpl/handler/__init__.py similarity index 99% rename from lib/cr_vmware_tpl/handler.py rename to lib/cr_vmware_tpl/handler/__init__.py index 748374d..cc6ea20 100644 --- a/lib/cr_vmware_tpl/handler.py +++ b/lib/cr_vmware_tpl/handler/__init__.py @@ -46,18 +46,18 @@ from fb_vmware.connect import VsphereConnection from fb_vmware.iface import VsphereVmInterface from fb_vmware.datastore import VsphereDatastore -from . import print_section_start, print_section_end -from . import DEFAULT_PORT_LDAP, DEFAULT_PORT_LDAPS +from .. import print_section_start, print_section_end +from .. import DEFAULT_PORT_LDAP, DEFAULT_PORT_LDAPS -from .config import CrTplConfiguration +from ..config import CrTplConfiguration -from .cobbler import Cobbler +from ..cobbler import Cobbler -from .errors import MSG_NO_CLUSTER, TempVmExistsError, NoDatastoreFoundError +from ..errors import MSG_NO_CLUSTER, TempVmExistsError, NoDatastoreFoundError -from .xlate import XLATOR +from ..xlate import XLATOR -__version__ = '2.3.4' +__version__ = '2.4.0' LOG = logging.getLogger(__name__) TZ = pytz.timezone('Europe/Berlin') -- 2.39.5