summaryrefslogtreecommitdiff
path: root/ironic/api/__init__.py
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2014-02-19 21:06:53 +0100
committerAndreas Jaeger <aj@suse.de>2014-02-21 16:46:33 +0100
commit5a241dfd70a9dd58ccb035717482ffea6884bbc1 (patch)
tree6a40d12c1ecc858412930063a1b9a311ed75e6b8 /ironic/api/__init__.py
parent23b7f5381a61e779a0634b689fbae22c9ca7ad09 (diff)
downloadironic-5a241dfd70a9dd58ccb035717482ffea6884bbc1.tar.gz
Improve help strings
Better follow oslo.config style guide for consistent help strings: * Capitalize help strings * End help strings with "." * Improve wording and capitalization. Change-Id: Ib647bd85e636b16f1d1a040bb9ba04cd319a8826
Diffstat (limited to 'ironic/api/__init__.py')
-rw-r--r--ironic/api/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ironic/api/__init__.py b/ironic/api/__init__.py
index 9c86f2064..17194c8ea 100644
--- a/ironic/api/__init__.py
+++ b/ironic/api/__init__.py
@@ -21,14 +21,14 @@ from oslo.config import cfg
API_SERVICE_OPTS = [
cfg.StrOpt('host_ip',
default='0.0.0.0',
- help='The listen IP for the Ironic API server'),
+ help='The listen IP for the Ironic API server.'),
cfg.IntOpt('port',
default=6385,
- help='The port for the Ironic API server'),
+ help='The port for the Ironic API server.'),
cfg.IntOpt('max_limit',
default=1000,
help='The maximum number of items returned in a single '
- 'response from a collection resource'),
+ 'response from a collection resource.'),
]
CONF = cfg.CONF