Merge "fix generate_environments to run in python3"

This commit is contained in:
Zuul 2017-12-27 10:12:15 +00:00 committed by Gerrit Code Review
commit faa521be7d

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