summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-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 41848edd29..a39d4374d8 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -875,7 +875,7 @@ class Fetch(object):
875 uselocalcount = bb.data.getVar("BB_LOCALCOUNT_OVERRIDE", d, True) or False 875 uselocalcount = bb.data.getVar("BB_LOCALCOUNT_OVERRIDE", d, True) or False
876 count = None 876 count = None
877 if uselocalcount: 877 if uselocalcount:
878 count = Fetch.localcount_internal_helper(ud, d) 878 count = Fetch.localcount_internal_helper(ud, d, name)
879 if count is None: 879 if count is None:
880 count = localcounts[key + '_count'] or "0" 880 count = localcounts[key + '_count'] or "0"
881 881