From dd4b654e5f6d6d739d69226f1898b1d31db07b37 Mon Sep 17 00:00:00 2001 From: Eoghan Glynn Date: Thu, 1 Aug 2013 17:41:38 +0000 Subject: [PATCH] Fix typo in help text. Minor misspelling in alarm-{create|update} help text. Change-Id: I1ddbaec42dda175a17d32229029c08d46e64151f --- ceilometerclient/v2/shell.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ceilometerclient/v2/shell.py b/ceilometerclient/v2/shell.py index 713d5a9b..1ea3e525 100644 --- a/ceilometerclient/v2/shell.py +++ b/ceilometerclient/v2/shell.py @@ -207,8 +207,8 @@ def do_alarm_show(cc, args={}): 'May be used multiple times.')) @utils.arg('--matching-metadata', dest='matching_metadata', metavar='', action='append', default=None, - help=('A meter should match this resource metadata (key=value)' - 'additionnal to the counter_name')) + help=('A meter should match this resource metadata (key=value) ' + 'additionally to the counter_name')) def do_alarm_create(cc, args={}): '''Create a new alarm.''' fields = dict(filter(lambda x: not (x[1] is None), vars(args).items())) @@ -251,8 +251,8 @@ def do_alarm_create(cc, args={}): 'May be used multiple times.')) @utils.arg('--matching-metadata', dest='matching_metadata', metavar='', action='append', default=None, - help=('A meter should match this resource metadata (key=value)' - 'additionnal to the counter_name')) + help=('A meter should match this resource metadata (key=value) ' + 'additionally to the counter_name')) def do_alarm_update(cc, args={}): '''Update an existing alarm.''' fields = dict(filter(lambda x: not (x[1] is None), vars(args).items()))