diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2008-01-16 03:52:41 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2008-01-16 03:52:41 +0000 |
commit | 9707537bb7184a9109a7595459b4c4e84ef5b4f3 (patch) | |
tree | 6d6dae5e1a17bf9a0819e87a99581e41fe96fd59 /src/lib/Client | |
parent | ed4ac10a78038a4d748e5076e6dec49437301281 (diff) | |
download | bcfg2-9707537bb7184a9109a7595459b4c4e84ef5b4f3.tar.gz bcfg2-9707537bb7184a9109a7595459b4c4e84ef5b4f3.tar.bz2 bcfg2-9707537bb7184a9109a7595459b4c4e84ef5b4f3.zip |
Implement support for -b foo:bar:baz on the command line (Resolves Ticket #516)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4244 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Client')
-rw-r--r-- | src/lib/Client/Frame.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/Frame.py b/src/lib/Client/Frame.py index b341d65fd..d0477f752 100644 --- a/src/lib/Client/Frame.py +++ b/src/lib/Client/Frame.py @@ -170,7 +170,7 @@ class Frame: # first perform bundle filtering if self.setup['bundle']: bundles = [b for b in self.config.findall('./Bundle') \ - if b.get('name') == self.setup['bundle']] + if b.get('name') in self.setup['bundle']] self.whitelist = [e for e in self.whitelist if \ True in [e in b for b in bundles]] else: |