From fb71c9d8e7a3dd67063c92e7f16fdbf1893511f1 Mon Sep 17 00:00:00 2001 From: Vitalii Kulanov Date: Tue, 20 Dec 2016 17:14:55 +0200 Subject: [PATCH] Align help message for 'fuel2 sequence list' command Closes-Bug: 1651467 Change-Id: Id77bb722a455473b755b26fc00ad9f3561eb5030 --- fuelclient/commands/sequence.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/fuelclient/commands/sequence.py b/fuelclient/commands/sequence.py index 0887be1a..97983570 100644 --- a/fuelclient/commands/sequence.py +++ b/fuelclient/commands/sequence.py @@ -40,7 +40,7 @@ class SequenceCreate(SequenceMixIn, base.show.ShowOne, base.BaseCommand): parser.add_argument( '-n', '--name', required=True, - help='The unique name for sequence' + help='The unique name for sequence.' ) parser.add_argument( '-t', '--graph-type', @@ -48,7 +48,7 @@ class SequenceCreate(SequenceMixIn, base.show.ShowOne, base.BaseCommand): nargs='+', required=True, help='Graph types, which will be included to sequence.\n' - 'Note: Order is important' + 'Note: Order is important.' ) return parser @@ -121,7 +121,7 @@ class SequenceDownload(SequenceMixIn, base.BaseCommand): class SequenceUpdate(SequenceMixIn, base.BaseShowCommand): - """Update existing sequence""" + """Update existing sequence.""" columns = ("id", "name") @@ -130,7 +130,7 @@ class SequenceUpdate(SequenceMixIn, base.BaseShowCommand): parser.add_argument( '-n', '--name', required=False, - help='The unique name for sequence' + help='The unique name for sequence.' ) parser.add_argument( '-t', '--graph-type', @@ -138,7 +138,7 @@ class SequenceUpdate(SequenceMixIn, base.BaseShowCommand): nargs='+', required=False, help='Graph types, which will be included to sequence.\n' - 'Note: Order is important' + 'Note: Order is important.' ) return parser @@ -156,16 +156,16 @@ class SequenceUpdate(SequenceMixIn, base.BaseShowCommand): class SequenceDelete(SequenceMixIn, base.BaseDeleteCommand): - """Delete existing sequence""" + """Delete existing sequence.""" class SequenceShow(SequenceMixIn, base.BaseShowCommand): - """Display information about sequence""" + """Display information about sequence.""" columns = ("id", "release_id", "name", "graphs") class SequenceList(SequenceMixIn, base.BaseListCommand): - """Delete existing sequence""" + """Show list of all existing sequences.""" columns = ("id", "release_id", "name") filters = {'release': 'release', 'cluster': 'env'} @@ -175,12 +175,12 @@ class SequenceList(SequenceMixIn, base.BaseListCommand): group.add_argument( '-r', '--release', type=int, - help='The Release object ID' + help='The Release object ID.' ) group.add_argument( '-e', '--env', type=int, - help='The environment object id.\n' + help='The environment object id.' ) return parser