Fix wrong parameter description in docstring

There is duplicated 'param' to same parameter, that should be 'type'.

Change-Id: I446a524ea27553e63c800f80edc5074df6e9c53b
This commit is contained in:
ChangBo Guo(gcb) 2014-03-29 11:27:54 +08:00
parent 19053b6e65
commit 3738bff165
1 changed files with 2 additions and 2 deletions

View File

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