extend to config_inheritance
This commit is contained in:
parent
73aa437d45
commit
fedf3ee9f9
3 changed files with 11 additions and 7 deletions
|
|
@ -4897,8 +4897,8 @@ def anon_handle_taginfo(goptions, session, args):
|
|||
print("Tag options:")
|
||||
for key in sorted(info['extra'].keys()):
|
||||
line = " %s : %s" % (key, pprint.pformat(info['extra'][key]))
|
||||
if key in info.get('extra_inheritance', []):
|
||||
line = "%-30s [%s]" % (line, info['extra_inheritance'][key]['name'])
|
||||
if key in info.get('config_inheritance', {}).get('extra', []):
|
||||
line = "%-30s [%s]" % (line, info['config_inheritance']['extra'][key]['name'])
|
||||
print(line)
|
||||
dest_targets = session.getBuildTargets(destTagID=info['id'], **event_opts)
|
||||
build_targets = session.getBuildTargets(buildTagID=info['id'], **event_opts)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue