From c17684cb6fa4e6eaee37044f572210ed60684f3d Mon Sep 17 00:00:00 2001 From: Kamil Rykowski Date: Tue, 17 Mar 2015 11:26:21 +0100 Subject: [PATCH] Fix typo in rpc controller Add missing space to the help of `allowed_rpc_exception_modules` config opt and fix typo in controller docstring. Change-Id: I868e4cc472cf5d401ea64540e8d8613162ab6cfa --- glance/common/rpc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glance/common/rpc.py b/glance/common/rpc.py index a8ac7e0ed6..43969efe43 100644 --- a/glance/common/rpc.py +++ b/glance/common/rpc.py @@ -46,7 +46,7 @@ rpc_opts = [ 'exceptions', ], help='Modules of exceptions that are permitted to be recreated' - 'upon receiving exception data from an rpc call.'), + ' upon receiving exception data from an rpc call.'), ] CONF = cfg.CONF @@ -106,7 +106,7 @@ class Controller(object): Exports methods through the RPC Api. :params resource: Resource's instance to register. - :params filtered: List of methods that *can* me registered. Read + :params filtered: List of methods that *can* be registered. Read as "Method must be in this list". :params excluded: List of methods to exclude. :params refiner: Callable to use as filter for methods.