Capitalize help descriptions

Change-Id: Ie93af370e455990ee2e4fcbb11a9f1dbfeb51aab
This commit is contained in:
Luka Krajger
2016-05-19 18:03:14 +02:00
parent 331968496a
commit 05ac550251
2 changed files with 4 additions and 4 deletions

View File

@@ -30,13 +30,13 @@ class ListVNF(tackerV10.ListCommand):
class ShowVNF(tackerV10.ShowCommand): class ShowVNF(tackerV10.ShowCommand):
"""show information of a given VNF.""" """Show information of a given VNF."""
resource = _VNF resource = _VNF
class CreateVNF(tackerV10.CreateCommand): class CreateVNF(tackerV10.CreateCommand):
"""create a VNF.""" """Create a VNF."""
resource = _VNF resource = _VNF
remove_output_fields = ["attributes"] remove_output_fields = ["attributes"]

View File

@@ -34,13 +34,13 @@ class ListVNFD(tackerV10.ListCommand):
class ShowVNFD(tackerV10.ShowCommand): class ShowVNFD(tackerV10.ShowCommand):
"""show information of a given VNFD.""" """Show information of a given VNFD."""
resource = _VNFD resource = _VNFD
class CreateVNFD(tackerV10.CreateCommand): class CreateVNFD(tackerV10.CreateCommand):
"""create a VNFD.""" """Create a VNFD."""
resource = _VNFD resource = _VNFD
remove_output_fields = ["attributes"] remove_output_fields = ["attributes"]