Fixed key error
This commit is contained in:
parent
8180624032
commit
b18f54b546
@ -163,11 +163,11 @@ class ActionRunner(object):
|
||||
cls_kvs = dict()
|
||||
cls_kvs['runner'] = self
|
||||
cls_kvs['component_dir'] = sh.joinpths(root_dir, c)
|
||||
cls_kvs['subsystem_info'] = my_info.pop('subsystems') or dict()
|
||||
cls_kvs['subsystem_info'] = my_info.get('subsystems') or dict()
|
||||
cls_kvs['all_instances'] = instances
|
||||
cls_kvs['name'] = c
|
||||
cls_kvs['keep_old'] = self.keep_old
|
||||
cls_kvs['desired_subsystems'] = set(desired_subsystems.get(c) or list())
|
||||
cls_kvs['desired_subsystems'] = desired_subsystems.get(c) or set()
|
||||
cls_kvs['options'] = component_opts.get(c) or dict()
|
||||
# The above is not overrideable...
|
||||
for (k, v) in my_info.items():
|
||||
|
Loading…
Reference in New Issue
Block a user