Skip to content

Commit

Permalink
Merge pull request #9 from Mattikin/master
Browse files Browse the repository at this point in the history
Fixed TypeError: not enough arguments for format string
  • Loading branch information
Mattikin committed May 7, 2015
2 parents 7bd58a6 + 4221332 commit 1e2a2ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit 1e2a2ff

Please sign in to comment.