From 7fa59bda16d9721c61fa214ee809938e123158f1 Mon Sep 17 00:00:00 2001 From: Thomas Herve Date: Wed, 11 Dec 2013 11:25:58 +0100 Subject: [PATCH] Improve description of some commands Change description of sample-list and statistics commands to not refer to the meter as "this meter(s)". Change-Id: Ib8301361f43f8e08ef9975a609548afffba1ba41 Closes-Bug: #1259853 --- ceilometerclient/v2/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ceilometerclient/v2/shell.py b/ceilometerclient/v2/shell.py index a4cec336..065727d5 100644 --- a/ceilometerclient/v2/shell.py +++ b/ceilometerclient/v2/shell.py @@ -41,7 +41,7 @@ OPERATORS_STRING = dict(gt='>', ge='>=', @utils.arg('-p', '--period', metavar='', help='Period in seconds over which to group samples.') def do_statistics(cc, args): - '''List the statistics for this meter.''' + '''List the statistics for a meter.''' fields = {'meter_name': args.meter, 'q': options.cli_to_array(args.query), 'period': args.period} @@ -66,7 +66,7 @@ def do_statistics(cc, args): @utils.arg('-l', '--limit', metavar='', help='Maximum number of samples to return.') def do_sample_list(cc, args): - '''List the samples for this meters.''' + '''List the samples for a meter.''' fields = {'meter_name': args.meter, 'q': options.cli_to_array(args.query), 'limit': args.limit}