diff options
author | ChangBo Guo(gcb) <eric.guo@easystack.cn> | 2014-03-29 11:27:54 +0800 |
---|---|---|
committer | ChangBo Guo(gcb) <eric.guo@easystack.cn> | 2014-03-29 11:27:54 +0800 |
commit | 3738bff1650da22d978129c6d13ce1833e9fcb82 (patch) | |
tree | d6a05f85e3a86db50db38abf26965212888a6d0b /oslo/messaging/rpc/client.py | |
parent | 19053b6e652d54444af44cff2c7db640b5b5b207 (diff) | |
download | oslo-messaging-3738bff1650da22d978129c6d13ce1833e9fcb82.tar.gz |
Fix wrong parameter description in docstring
There is duplicated 'param' to same parameter, that should be 'type'.
Change-Id: I446a524ea27553e63c800f80edc5074df6e9c53b
Diffstat (limited to 'oslo/messaging/rpc/client.py')
-rw-r--r-- | oslo/messaging/rpc/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oslo/messaging/rpc/client.py b/oslo/messaging/rpc/client.py index 230988e..30d2450 100644 --- a/oslo/messaging/rpc/client.py +++ b/oslo/messaging/rpc/client.py @@ -320,7 +320,7 @@ class RPCClient(object): :param method: the method name :type method: str :param kwargs: a dict of method arguments - :param kwargs: dict + :type kwargs: dict """ self.prepare().cast(ctxt, method, **kwargs) @@ -355,7 +355,7 @@ class RPCClient(object): :param method: the method name :type method: str :param kwargs: a dict of method arguments - :param kwargs: dict + :type kwargs: dict :raises: MessagingTimeout, RemoteError """ return self.prepare().call(ctxt, method, **kwargs) |