Skip to content

Commit 1e2a2ff

Browse files
committed
Merge pull request #9 from Mattikin/master
Fixed TypeError: not enough arguments for format string
2 parents 7bd58a6 + 4221332 commit 1e2a2ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ZenPacks/community/VMwareESXiMonitor/modeler/plugins/community/cmd/VMwareESXiDatastoreMap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def process(self, device, results, log):
5151
elif re.search(';', line):
5252
name, type, capacity, accessible = line.split(';')
5353
if not int(accessible) == 1:
54-
log.warning('Datastore %s of device %s is not accessible' % name, device.id)
54+
log.warning('Datastore %s of device %s is not accessible' % (name, device.id))
5555
continue
5656
rm.append(self.objectMap({
5757
'id': self.prepId(name),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# or saved. Do not modify them directly here.
44
# NB: PACKAGES is deprecated
55
NAME = "ZenPacks.community.VMwareESXiMonitor"
6-
VERSION = "2.0.5"
6+
VERSION = "2.0.6"
77
AUTHOR = "Eric Enns, Matthias Kittl"
88
LICENSE = ""
99
NAMESPACE_PACKAGES = ['ZenPacks', 'ZenPacks.community']

0 commit comments

Comments
 (0)