summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-05-10 10:37:41 +0200
committerJürg Billeter <j@bitron.ch>2018-05-11 07:57:37 +0200
commit4e5125299ca04d3b3ad01af0653e7e45800e3cfa (patch)
tree8130701af93d913a9b130397f9a56ec9ac866dbc
parentda4af7988df902f82e1bab015be923d41418b9bd (diff)
downloadbuildstream-4e5125299ca04d3b3ad01af0653e7e45800e3cfa.tar.gz
_stream.py: Remove unused downloadable parameter from load_selection()
-rw-r--r--buildstream/_stream.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/buildstream/_stream.py b/buildstream/_stream.py
index a5eacacf0..6bde4eb02 100644
--- a/buildstream/_stream.py
+++ b/buildstream/_stream.py
@@ -103,18 +103,15 @@ class Stream():
# targets (list of str): Targets to pull
# selection (PipelineSelection): The selection mode for the specified targets
# except_targets (list of str): Specified targets to except from fetching
- # downloadable (bool): Whether the downloadable state of elements should be resolved
#
# Returns:
# (list of Element): The selected elements
def load_selection(self, targets, *,
selection=PipelineSelection.NONE,
- except_targets=(),
- downloadable=False):
+ except_targets=()):
elements, _ = self._load(targets, (),
selection=selection,
except_targets=except_targets,
- use_artifact_config=downloadable,
fetch_subprojects=False)
return elements