diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-07-16 18:31:19 +0100 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-07-16 18:32:48 +0100 |
commit | f2ece705b7bf36d7d923264af2b1f51b66a9f9a7 (patch) | |
tree | 7df4a79b12013f6094371e86bcf52bb6aa8719e7 /src/buildstream/plugins/elements/compose.py | |
parent | fbb8eea8334023e30c8719cb52f9b0e226b4eb8b (diff) | |
download | buildstream-bschubert/api-improvements.tar.gz |
node: Add 'get_str_list' on 'MappingNode'bschubert/api-improvements
`mapping.get_sequence(...).as_str_list()` is a very common
pattern seen both in plugins and the core. Adding a helper to reduce
the number of operations will make usage smoother
Diffstat (limited to 'src/buildstream/plugins/elements/compose.py')
-rw-r--r-- | src/buildstream/plugins/elements/compose.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildstream/plugins/elements/compose.py b/src/buildstream/plugins/elements/compose.py index 83501d817..1c523eeb2 100644 --- a/src/buildstream/plugins/elements/compose.py +++ b/src/buildstream/plugins/elements/compose.py @@ -66,8 +66,8 @@ class ComposeElement(Element): # We name this variable 'integration' only to avoid # collision with the Element.integrate() method. self.integration = node.get_bool('integrate') - self.include = node.get_sequence('include').as_str_list() - self.exclude = node.get_sequence('exclude').as_str_list() + self.include = node.get_str_list('include') + self.exclude = node.get_str_list('exclude') self.include_orphans = node.get_bool('include-orphans') def preflight(self): |