Fix openstack cluster action list bug

Before this patch, `openstack cluster action list` can't list actions.
Also, find a action's anohter problem in senlin server code.
I will report and fix atcion's server bug  tomorrow.

Change-Id: Id6796e53a6875f82e4ab7bc3da6519a2eab272aa
This commit is contained in:
jonnary
2016-09-12 21:06:42 +08:00
parent f36f07d779
commit 80babc4860

View File

@@ -102,7 +102,7 @@ class ListAction(command.Lister):
return (
columns,
(utils.get_item_properties(a.to_dict(), columns,
(utils.get_item_properties(a, columns,
formatters=formatters)
for a in actions)
)