mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-05 05:04:46 +02:00
utils.py: fix unclosed (
File "/opt/layerindex/layerindex/update.py", line 525 failed_layers[branch].append('%s: Failed to add since LAYERDEPENDS [%s ...] is not SyntaxError: '(' was never closed Signed-off-by: Tim Orling <tim.orling@konsulko.com>
This commit is contained in:
parent
9961b58146
commit
4712f00df7
|
@ -522,7 +522,7 @@ def main():
|
|||
for layer, value in deps_dict_all.items():
|
||||
logger.warn('%s: LAYERDEPENDS: %s LAYERRECOMMENDS: %s' % (layer.name, value['deps'], value['recs']))
|
||||
if value['deps']:
|
||||
failed_layers[branch].append('%s: Failed to add since LAYERDEPENDS [%s ...] is not satisfied' % (layer.name, next(iter(value['deps'])))
|
||||
failed_layers[branch].append('%s: Failed to add since LAYERDEPENDS [%s ...] is not satisfied' % (layer.name, next(iter(value['deps']))))
|
||||
else:
|
||||
# Should never come here
|
||||
logger.error("Unexpected errors when sorting layers")
|
||||
|
|
Loading…
Reference in New Issue
Block a user