From 3738bff1650da22d978129c6d13ce1833e9fcb82 Mon Sep 17 00:00:00 2001 From: "ChangBo Guo(gcb)" Date: Sat, 29 Mar 2014 11:27:54 +0800 Subject: [PATCH] Fix wrong parameter description in docstring There is duplicated 'param' to same parameter, that should be 'type'. Change-Id: I446a524ea27553e63c800f80edc5074df6e9c53b --- oslo/messaging/rpc/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oslo/messaging/rpc/client.py b/oslo/messaging/rpc/client.py index 230988e22..30d24508d 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)