summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Client/Frame.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/Client/Frame.py b/src/lib/Client/Frame.py
index 86d10cc5f..b9fabc0ab 100644
--- a/src/lib/Client/Frame.py
+++ b/src/lib/Client/Frame.py
@@ -301,7 +301,8 @@ class Frame:
self.DispatchInstallCalls(clobbered)
for bundle in self.config.findall('.//Bundle'):
- if self.setup['bundle'] and bundle not in self.setup['bundle']:
+ if self.setup['bundle'] and \
+ bundle.get('name') not in self.setup['bundle']:
# prune out unspecified bundles when running with -b
continue
for tool in self.tools: