aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bblayers/common.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-23 13:21:35 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-23 16:28:37 +0000
commitaf1654498ee5b47368a41dad2d2b7b6abc19ff15 (patch)
tree839ffdb5723b6647e9bd5fd0c3903104bdc3ed1c /lib/bblayers/common.py
parentf2341dc46b6abfc08a4d01c7abdd3d4630577999 (diff)
downloadbitbake-af1654498ee5b47368a41dad2d2b7b6abc19ff15.tar.gz
data_smart: Don't pass unneeded datastore
The datastore is already available to this function internally so don't also try and pass the datastore as a parameter. This is clearly broken API when you look at the existing calls to it. This then doesn't break the planned tinfoil data connector changes. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bblayers/common.py')
-rw-r--r--lib/bblayers/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bblayers/common.py b/lib/bblayers/common.py
index c5657d381..6c76ef350 100644
--- a/lib/bblayers/common.py
+++ b/lib/bblayers/common.py
@@ -17,7 +17,7 @@ class LayerPlugin():
def tinfoil_init(self, tinfoil):
self.tinfoil = tinfoil
self.bblayers = (self.tinfoil.config_data.getVar('BBLAYERS') or "").split()
- layerconfs = self.tinfoil.config_data.varhistory.get_variable_items_files('BBFILE_COLLECTIONS', self.tinfoil.config_data)
+ layerconfs = self.tinfoil.config_data.varhistory.get_variable_items_files('BBFILE_COLLECTIONS')
self.bbfile_collections = {layer: os.path.dirname(os.path.dirname(path)) for layer, path in layerconfs.items()}
@staticmethod