mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59:01 +02:00
utils.py: fix bad indenting
We should always be using four spaces. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
05b8528142
commit
128f86adfc
|
@ -122,13 +122,12 @@ def _add_dependency(var, name, layerbranch, config_data, logger=None, required=T
|
|||
layerdep.save()
|
||||
|
||||
def set_layerbranch_collection_version(layerbranch, config_data, logger=None):
|
||||
|
||||
layerbranch.collection = config_data.getVar('BBFILE_COLLECTIONS', True)
|
||||
ver_str = "LAYERVERSION_"
|
||||
if layerbranch.collection:
|
||||
layerbranch.collection = layerbranch.collection.strip()
|
||||
ver_str += layerbranch.collection
|
||||
layerbranch.version = config_data.getVar(ver_str, True)
|
||||
layerbranch.collection = config_data.getVar('BBFILE_COLLECTIONS', True)
|
||||
ver_str = "LAYERVERSION_"
|
||||
if layerbranch.collection:
|
||||
layerbranch.collection = layerbranch.collection.strip()
|
||||
ver_str += layerbranch.collection
|
||||
layerbranch.version = config_data.getVar(ver_str, True)
|
||||
|
||||
def setup_tinfoil(bitbakepath, enable_tracking):
|
||||
sys.path.insert(0, bitbakepath + '/lib')
|
||||
|
|
Loading…
Reference in New Issue
Block a user