summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2007-01-23 21:03:36 +0000
committerNarayan Desai <desai@mcs.anl.gov>2007-01-23 21:03:36 +0000
commite916dbf04f641631dabc5b48d3269748c099a4b7 (patch)
tree05aa6c546509c0a063e2873d499378f5369418e6
parent34ea17b19e5fefa2c9b2a6db3ec28c36e0025453 (diff)
downloadbcfg2-e916dbf04f641631dabc5b48d3269748c099a4b7.tar.gz
bcfg2-e916dbf04f641631dabc5b48d3269748c099a4b7.tar.bz2
bcfg2-e916dbf04f641631dabc5b48d3269748c099a4b7.zip
Fix bundle reverify behavior
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2709 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--src/lib/Client/Frame.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/Frame.py b/src/lib/Client/Frame.py
index f9d7a8ab0..17c3b02db 100644
--- a/src/lib/Client/Frame.py
+++ b/src/lib/Client/Frame.py
@@ -192,7 +192,7 @@ class Frame:
tbm = [(t, b) for t in self.tools for b in mbundles]
for tool, bundle in tbm:
try:
- tool.Inventory(bundle)
+ tool.Inventory([bundle])
except:
self.logger.error("%s.Inventory() call failed:" % tool.__name__, exc_info=1)
clobbered = [entry for bundle in mbundles for entry in bundle \