fix generate_environments to run in python3
This patch fix the following error when running python3 TypeError: can only concatenate list (not "dict_keys") to list Change-Id: Ic487bf4c4f6cb2bc35011416056bef1417a23076
This commit is contained in:
parent
6035443151
commit
609784ded1
@ -82,7 +82,7 @@ def _generate_environment(input_env, output_path, parent_env=None):
|
||||
if template_data['parameters'] == 'all':
|
||||
new_names = [k for k, v in f_params.items()]
|
||||
for hidden in _HIDDEN_PARAMS:
|
||||
if (hidden not in (static_names + sample_values.keys()) and
|
||||
if (hidden not in (static_names + list(sample_values)) and
|
||||
hidden in new_names):
|
||||
new_names.remove(hidden)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user