Fix help typo

This change fixes some help string typos

Change-Id: I4a013f813d8753ecd178becabaf48f9990e5ff57
This commit is contained in:
Mehdi Abaakouk 2015-09-21 10:21:27 +02:00
parent 2a84d7337f
commit eaf9e32449
1 changed files with 3 additions and 3 deletions

View File

@ -61,14 +61,14 @@ class CliArchivePolicyCreate(show.ShowOne):
def get_parser(self, prog_name):
parser = super(CliArchivePolicyCreate, self).get_parser(prog_name)
parser.add_argument("name", help=("name of the active policy"))
parser.add_argument("name", help=("name of the archive policy"))
parser.add_argument("-b", "--back-window", dest="back_window",
type=int,
help=("back window of the active policy"))
help=("back window of the archive policy"))
parser.add_argument("-m", "--aggregation-method",
action="append",
dest="aggregation_methods",
help=("aggregation method of the achive policy"))
help=("aggregation method of the archive policy"))
parser.add_argument("-d", "--definition", action='append',
required=True, type=archive_policy_definition,
metavar="<DEFINITION>",