Merge "Fix watcher actionplan list command"

This commit is contained in:
Zuul
2018-01-05 09:25:24 +00:00
committed by Gerrit Code Review

View File

@@ -162,7 +162,7 @@ class ListActionPlan(command.Lister):
yaml_format.YAMLFormatter().emit_one( yaml_format.YAMLFormatter().emit_one(
column_names=list(resource.capitalize() column_names=list(resource.capitalize()
for resource in formatted_global_efficacy), for resource in formatted_global_efficacy),
data=[value for value in formatted_global_efficacy.itervalues()], data=[value for value in formatted_global_efficacy.values()],
stdout=out, stdout=out,
parsed_args=parsed_args, parsed_args=parsed_args,
) )