From 6bb1bb211620d87642c84cc689a801d105a25a09 Mon Sep 17 00:00:00 2001 From: Jonathan Maw Date: Fri, 22 Jun 2018 17:01:58 +0100 Subject: 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 9e4406bc6..0ae55ca5d 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, -- cgit v1.2.1