summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/local.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/local.py')
-rw-r--r--bitbake/lib/bb/fetch2/local.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py
index 5332faafe2..8baec7d2e8 100644
--- a/bitbake/lib/bb/fetch2/local.py
+++ b/bitbake/lib/bb/fetch2/local.py
@@ -41,9 +41,9 @@ class Local(FetchMethod):
41 """ 41 """
42 Return the local filename of a given url assuming a successful fetch. 42 Return the local filename of a given url assuming a successful fetch.
43 """ 43 """
44 return self.localpaths(urldata, d)[-1] 44 return self.localfile_searchpaths(urldata, d)[-1]
45 45
46 def localpaths(self, urldata, d): 46 def localfile_searchpaths(self, urldata, d):
47 """ 47 """
48 Return the local filename of a given url assuming a successful fetch. 48 Return the local filename of a given url assuming a successful fetch.
49 """ 49 """