]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commit
devtool: modify: fix exception
authorJamin Lin <jamin_lin@aspeedtech.com>
Wed, 3 Jan 2024 10:13:44 +0000 (18:13 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 7 Jan 2024 12:24:54 +0000 (12:24 +0000)
commitfb0db5c48abb4d56233a175fdd349d18b972e452
tree2c8bdf207dfdcabb98e4726d89347165ecaf642d
parent5d9cd0ef5f7235eb5c8495a803bea6940c2994fe
devtool: modify: fix exception

Root Cause:
initial_revs is an empty dictionary and do not have "." key.

Traceback (most recent call last):
  File "scripts/devtool", line 349, in <module>
    ret = main()
  File "scripts/devtool", line 336, in main
    ret = args.func(args, config, basepath, workspace)
  File "scripts/lib/devtool/standard.py", line 922, in modify
    if not initial_revs["."]:
KeyError: '.'

Solution:
check key exists, then get its value.

Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/devtool/standard.py