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:
Moshe Levi 2017-12-27 03:03:38 +02:00
parent 6035443151
commit 609784ded1

View File

@ -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: