summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index a3e98d1b50..9ed736b0e1 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -160,7 +160,7 @@ python base_do_fetch() {
160 fetcher = bb.fetch2.Fetch(src_uri, d) 160 fetcher = bb.fetch2.Fetch(src_uri, d)
161 fetcher.download() 161 fetcher.download()
162 except bb.fetch2.BBFetchException as e: 162 except bb.fetch2.BBFetchException as e:
163 bb.fatal(str(e)) 163 bb.fatal("Bitbake Fetcher Error: " + repr(e))
164} 164}
165 165
166addtask unpack after do_fetch 166addtask unpack after do_fetch
@@ -177,7 +177,7 @@ python base_do_unpack() {
177 fetcher = bb.fetch2.Fetch(src_uri, d) 177 fetcher = bb.fetch2.Fetch(src_uri, d)
178 fetcher.unpack(d.getVar('WORKDIR')) 178 fetcher.unpack(d.getVar('WORKDIR'))
179 except bb.fetch2.BBFetchException as e: 179 except bb.fetch2.BBFetchException as e:
180 bb.fatal(str(e)) 180 bb.fatal("Bitbake Fetcher Error: " + repr(e))
181} 181}
182 182
183def get_layers_branch_rev(d): 183def get_layers_branch_rev(d):