summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Client
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2013-05-10 15:31:29 -0500
committerSol Jerome <sol.jerome@gmail.com>2013-05-10 15:31:29 -0500
commit5852f61bc3b07d987f28d016dde9475eece5ba86 (patch)
tree161c6ba11042e14b25ed2a746dcebf6a3f038a80 /src/lib/Bcfg2/Client
parent5465d557cf9486cbe1a265419dadda4922b90351 (diff)
downloadbcfg2-5852f61bc3b07d987f28d016dde9475eece5ba86.tar.gz
bcfg2-5852f61bc3b07d987f28d016dde9475eece5ba86.tar.bz2
bcfg2-5852f61bc3b07d987f28d016dde9475eece5ba86.zip
Frame: Print the bundle name (not Element)
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src/lib/Bcfg2/Client')
-rw-r--r--src/lib/Bcfg2/Client/Frame.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Client/Frame.py b/src/lib/Bcfg2/Client/Frame.py
index 850e58d9d..7c998275e 100644
--- a/src/lib/Bcfg2/Client/Frame.py
+++ b/src/lib/Bcfg2/Client/Frame.py
@@ -418,10 +418,11 @@ class Frame(object):
# prune out unspecified bundles when running with -b
continue
if bundle in mbundles:
- self.logger.debug("Bundle %s was modified" % bundle)
+ self.logger.debug("Bundle %s was modified" % bundle.get('name'))
func = "BundleUpdated"
else:
- self.logger.debug("Bundle %s was not modified" % bundle)
+ self.logger.debug("Bundle %s was not modified" %
+ bundle.get('name'))
func = "BundleNotUpdated"
for tool in self.tools:
try: