Fix some inconsistency in docstrings

Added colon after ":param" according to:
http://docs.openstack.org/developer/hacking

Change-Id: I42519bd38a9c51d5e4b5399245f210cbfa62ee47
This commit is contained in:
linwwu 2015-11-24 22:14:52 +08:00
parent c435ebf816
commit 13821ee41d
1 changed files with 6 additions and 6 deletions

View File

@ -845,15 +845,15 @@ class Stack(collections.Mapping):
All of the resources are traversed in forward or reverse dependency
order.
:param action action that should be executed with stack resources
:param reverse defines if action on the resources need to be executed
:param action: action that should be executed with stack resources
:param reverse: define if action on the resources need to be executed
in reverse order (resources - first and then res dependencies )
:param post_func function that need to be executed after
:param post_func: function that need to be executed after
action complete on the stack
:param error_wait_time time to wait before cancelling all execution
:param error_wait_time: time to wait before cancelling all execution
threads when an error occurred
:param aggregate_exceptions defines if exceptions should be aggregated
:param pre_completion_func function that need to be executed right
:param aggregate_exceptions: define if exceptions should be aggregated
:param pre_completion_func: function that need to be executed right
before action completion. Uses stack ,action, status and reason as
input parameters
"""