Merge "--property should be required in os unset commands"

This commit is contained in:
Jenkins
2015-07-19 17:32:14 +00:00
committed by Gerrit Code Review
3 changed files with 3 additions and 0 deletions

View File

@@ -263,6 +263,7 @@ class UnsetSnapshot(command.Command):
default=[], default=[],
help='Property to remove from snapshot ' help='Property to remove from snapshot '
'(repeat to remove multiple values)', '(repeat to remove multiple values)',
required=True,
) )
return parser return parser

View File

@@ -166,6 +166,7 @@ class UnsetVolumeType(command.Command):
default=[], default=[],
help='Property to remove from volume type ' help='Property to remove from volume type '
'(repeat option to remove multiple properties)', '(repeat option to remove multiple properties)',
required=True,
) )
return parser return parser

View File

@@ -437,6 +437,7 @@ class UnsetVolume(command.Command):
default=[], default=[],
help='Property to remove from volume ' help='Property to remove from volume '
'(repeat option to remove multiple properties)', '(repeat option to remove multiple properties)',
required=True,
) )
return parser return parser