summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index a39d4374d8..11a813e028 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -550,7 +550,7 @@ class FetchData(object):
550 self.md5_expected = bb.data.getVarFlag("SRC_URI", self.md5_name, d) 550 self.md5_expected = bb.data.getVarFlag("SRC_URI", self.md5_name, d)
551 self.sha256_expected = bb.data.getVarFlag("SRC_URI", self.sha256_name, d) 551 self.sha256_expected = bb.data.getVarFlag("SRC_URI", self.sha256_name, d)
552 552
553 self.names = self.parm.get("name",'').split(',') 553 self.names = self.parm.get("name",'default').split(',')
554 for m in methods: 554 for m in methods:
555 if m.supports(url, self, d): 555 if m.supports(url, self, d):
556 self.method = m 556 self.method = m