diff --git a/ZenPacks/community/VMwareESXiMonitor/modeler/plugins/community/cmd/VMwareESXiDatastoreMap.py b/ZenPacks/community/VMwareESXiMonitor/modeler/plugins/community/cmd/VMwareESXiDatastoreMap.py index ea2f8e5..68b3b50 100644 --- a/ZenPacks/community/VMwareESXiMonitor/modeler/plugins/community/cmd/VMwareESXiDatastoreMap.py +++ b/ZenPacks/community/VMwareESXiMonitor/modeler/plugins/community/cmd/VMwareESXiDatastoreMap.py @@ -51,7 +51,7 @@ def process(self, device, results, log): elif re.search(';', line): name, type, capacity, accessible = line.split(';') if not int(accessible) == 1: - log.warning('Datastore %s of device %s is not accessible' % name, device.id) + log.warning('Datastore %s of device %s is not accessible' % (name, device.id)) continue rm.append(self.objectMap({ 'id': self.prepId(name), diff --git a/setup.py b/setup.py index 1a1ca18..1ce1a54 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ # or saved. Do not modify them directly here. # NB: PACKAGES is deprecated NAME = "ZenPacks.community.VMwareESXiMonitor" -VERSION = "2.0.5" +VERSION = "2.0.6" AUTHOR = "Eric Enns, Matthias Kittl" LICENSE = "" NAMESPACE_PACKAGES = ['ZenPacks', 'ZenPacks.community']