Align help message for 'fuel2 sequence list' command

Closes-Bug: 1651467

Change-Id: Id77bb722a455473b755b26fc00ad9f3561eb5030
This commit is contained in:
Vitalii Kulanov 2016-12-20 17:14:55 +02:00
parent f83b052de2
commit fb71c9d8e7
1 changed files with 10 additions and 10 deletions

View File

@ -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