This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch jonathan/mirror-client-sourcedownloader in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit d10bd357670532156bfef470dbe791fb58fa70b8 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 42e7fee..f61ff98 100644 --- a/buildstream/_loader/loader.py +++ b/buildstream/_loader/loader.py @@ -503,7 +503,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,
