summaryrefslogtreecommitdiff
path: root/nova/api/auth.py
diff options
context:
space:
mode:
authorGary Kotton <gkotton@vmware.com>2014-11-10 01:41:08 -0800
committerGary Kotton <gkotton@vmware.com>2014-11-10 01:52:16 -0800
commitbc411531a03725aaa317453b5e5a0d910af8ea2f (patch)
treea9979becfee8b5b7a69491e75f1445c820b0d77e /nova/api/auth.py
parent04b98c37ccf8e6bd37f8b94aef72a862fb271584 (diff)
downloadnova-bc411531a03725aaa317453b5e5a0d910af8ea2f.tar.gz
Config bindings: remove redundant brackets
There were cases where the help text had redundant brackets. This was removed. TrivialFix Change-Id: I5f9b715b2f358d5b7db1a36f7bf9922d461771be
Diffstat (limited to 'nova/api/auth.py')
-rw-r--r--nova/api/auth.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/api/auth.py b/nova/api/auth.py
index 1c99037570..1fda2e771f 100644
--- a/nova/api/auth.py
+++ b/nova/api/auth.py
@@ -32,9 +32,9 @@ from nova import wsgi
auth_opts = [
cfg.BoolOpt('api_rate_limit',
default=False,
- help=('Whether to use per-user rate limiting for the api. '
- 'This option is only used by v2 api. Rate limiting '
- 'is removed from v3 api.')),
+ help='Whether to use per-user rate limiting for the api. '
+ 'This option is only used by v2 api. Rate limiting '
+ 'is removed from v3 api.'),
cfg.StrOpt('auth_strategy',
default='keystone',
help='The strategy to use for auth: noauth or keystone.'),