From 9719b8a57b8cf850c7d5c47f7a69dcaf7fa014dc Mon Sep 17 00:00:00 2001 From: "ChangBo Guo(gcb)" Date: Thu, 3 Apr 2014 17:27:48 +0800 Subject: [PATCH] Remove rendundant parentheses of cfg help strings There is a hacking review https://review.openstack.org/#/c/74493/. That makes me be aware we maybe have rendunant parentheses. We'd better clean the parentheses, Python will handle that well. Change-Id: Ib29f995feed45d71000f333a2cc7d14b0efcb0d5 --- oslo/messaging/_drivers/impl_rabbit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oslo/messaging/_drivers/impl_rabbit.py b/oslo/messaging/_drivers/impl_rabbit.py index 5b6cf03bc..be9ae186f 100644 --- a/oslo/messaging/_drivers/impl_rabbit.py +++ b/oslo/messaging/_drivers/impl_rabbit.py @@ -50,8 +50,8 @@ rabbit_opts = [ help='SSL cert file (valid only if SSL enabled).'), cfg.StrOpt('kombu_ssl_ca_certs', default='', - help=('SSL certification authority file ' - '(valid only if SSL enabled).')), + help='SSL certification authority file ' + '(valid only if SSL enabled).'), cfg.FloatOpt('kombu_reconnect_delay', default=1.0, help='How long to wait before reconnecting in response to an '