from fb_tools.common import pp, to_str
from fb_tools.errors import HandlerError, ExpectedHandlerError
-from fb_tools.errors import VSphereDatacenterNotFoundError
from fb_tools.handler import BaseHandler
from fb_tools.vsphere.errors import VSphereExpectedError
+from fb_tools.vsphere.errors import VSphereDatacenterNotFoundError
from fb_tools.vsphere.server import VsphereServer
from fb_tools.vsphere.iface import VsphereVmInterface
from fb_tools.vsphere.ds import VsphereDatastore
from .xlate import XLATOR
-__version__ = '1.8.1'
+__version__ = '1.8.2'
LOG = logging.getLogger(__name__)
TZ = pytz.timezone('Europe/Berlin')
# -------------------------------------------------------------------------
def _get_storage_pod_obj_rec(self, child, used_c_name, depth=1):
-A if hasattr(child, 'childEntity'):
+ if hasattr(child, 'childEntity'):
if depth > self.vsphere.max_search_depth:
return None
for sub_child in child.childEntity: