summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2014-02-22 20:24:11 +0100
committerAndreas Jaeger <aj@suse.de>2014-04-24 22:05:30 +0200
commit523a234ad46597dddb5a28d37e71bd830f68f04f (patch)
tree356d3105166cdaf16dc511ad9e01baacaa6fde2d
parent212b0190d7abd461af787b88ace4e34b46659815 (diff)
downloadpython-ceilometerclient-523a234ad46597dddb5a28d37e71bd830f68f04f.tar.gz
Fix some help strings
It should be ID instead of id - like in nearly all other help strings. Also add missing "." to end of string and use plural for one string. Change-Id: I14c8c622978b206e092e56741ad5cc6885b2d118 Co-Authored-By: Summer Long <slong@redhat.com>
-rw-r--r--ceilometerclient/v2/shell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ceilometerclient/v2/shell.py b/ceilometerclient/v2/shell.py
index de44c51..9c1ec06 100644
--- a/ceilometerclient/v2/shell.py
+++ b/ceilometerclient/v2/shell.py
@@ -455,7 +455,7 @@ def do_alarm_threshold_create(cc, args={}):
@common_alarm_arguments(create=True)
@utils.arg('--alarm_ids', action='append', metavar='<ALARM IDS>',
required=True, dest='combination_rule/alarm_ids',
- help='List of alarm ids.')
+ help='List of alarm IDs.')
@utils.arg('--operator', metavar='<OPERATOR>',
dest='combination_rule/operator',
help='Operator to compare with, one of: ' + str(
@@ -576,7 +576,7 @@ def do_alarm_threshold_update(cc, args={}):
help='Name or list of names of the time constraints to remove.')
@utils.arg('--alarm_ids', action='append', metavar='<ALARM IDS>',
dest='combination_rule/alarm_ids',
- help='List of alarm id.')
+ help='List of alarm IDs.')
@utils.arg('--operator', metavar='<OPERATOR>',
dest='combination_rule/operator',
help='Operator to compare with, one of: ' + str(
@@ -700,7 +700,7 @@ def do_event_list(cc, args={}):
@utils.arg('-m', '--message_id', metavar='<message_id>',
- help='The id of the event. Should be a UUID',
+ help='The ID of the event. Should be a UUID.',
required=True)
def do_event_show(cc, args={}):
'''Show a particular event.'''