From 91f74d8df0e039bf558e8948f2c8f38d809c16b4 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Sun, 13 Oct 2013 08:13:43 +0100 Subject: [PATCH] Fix rpc client docs Missing a colon before the example code, see: http://docs.openstack.org/developer/oslo.messaging/rpcclient.html Change-Id: Icd875e509b0057c2c739d43c11cd37ab923b59ee --- oslo/messaging/rpc/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo/messaging/rpc/client.py b/oslo/messaging/rpc/client.py index 5e2d1d7f4..727b416af 100644 --- a/oslo/messaging/rpc/client.py +++ b/oslo/messaging/rpc/client.py @@ -236,7 +236,7 @@ class RPCClient(object): return cctxt.call(ctxt, 'test', arg=arg) However, this class can be used directly without wrapping it another class. - For example: + For example:: transport = messaging.get_transport(cfg.CONF) target = messaging.Target(topic='testtopic', version='2.0')