This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch jonathan/mirror-client-sourcedownloader-tidy in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 6bb1bb211620d87642c84cc689a801d105a25a09 Author: Jonathan Maw <[email protected]> AuthorDate: Fri Jun 22 17:01:58 2018 +0100 loader.py: Fix use of wrong fetch method --- buildstream/_loader/loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildstream/_loader/loader.py b/buildstream/_loader/loader.py index 9e4406b..0ae55ca 100644 --- a/buildstream/_loader/loader.py +++ b/buildstream/_loader/loader.py @@ -504,7 +504,7 @@ class Loader(): if self._fetch_subprojects: if ticker: ticker(filename, 'Fetching subproject from {} source'.format(source.get_kind())) - source.fetch() + source._fetch() else: detail = "Try fetching the project with `bst fetch {}`".format(filename) raise LoadError(LoadErrorReason.SUBPROJECT_FETCH_NEEDED,
