Merge "Remove rendundant parentheses of cfg help strings"

This commit is contained in:
Jenkins 2014-04-11 06:43:05 +00:00 committed by Gerrit Code Review
commit 37afb60ee3
3 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ util_opts = [
help='Whether to disable inter-process locks'), help='Whether to disable inter-process locks'),
cfg.StrOpt('lock_path', cfg.StrOpt('lock_path',
default=os.environ.get("OSLO_LOCK_PATH"), default=os.environ.get("OSLO_LOCK_PATH"),
help=('Directory to use for lock files.')) help='Directory to use for lock files.')
] ]

View File

@ -23,8 +23,8 @@ from openstack.common import log as logging
periodic_opts = [ periodic_opts = [
cfg.BoolOpt('run_external_periodic_tasks', cfg.BoolOpt('run_external_periodic_tasks',
default=True, default=True,
help=('Some periodic tasks can be run in a separate process. ' help='Some periodic tasks can be run in a separate process. '
'Should we run them here?')), 'Should we run them here?'),
] ]
CONF = cfg.CONF CONF = cfg.CONF

View File

@ -50,8 +50,8 @@ kombu_opts = [
help='SSL cert file (valid only if SSL enabled)'), help='SSL cert file (valid only if SSL enabled)'),
cfg.StrOpt('kombu_ssl_ca_certs', cfg.StrOpt('kombu_ssl_ca_certs',
default='', default='',
help=('SSL certification authority file ' help='SSL certification authority file '
'(valid only if SSL enabled)')), '(valid only if SSL enabled)'),
cfg.StrOpt('rabbit_host', cfg.StrOpt('rabbit_host',
default='localhost', default='localhost',
help='The RabbitMQ broker address where a single node is used'), help='The RabbitMQ broker address where a single node is used'),