qvm-block extend Fix help message

This commit is contained in:
Bahtiar `kalkin-` Gadimov 2016-09-04 21:01:16 +02:00
parent 46eb4a72dd
commit 5f586a99d4
No known key found for this signature in database
GPG Key ID: 96ED3C3BA19C3DEE

View File

@ -231,8 +231,7 @@ def init_extend_parser(sub_parsers):
"extend", help="extend volume from domain", aliases=('d', 'dt'))
extend_parser.add_argument(metavar='POOL_NAME:VOLUME_ID', dest='volume',
action=qubes.tools.VolumeAction)
extend_parser.add_argument(
'size', help='size in bytes of the new ThinPoolLogicalVolume')
extend_parser.add_argument('size', help='New size in bytes')
extend_parser.set_defaults(func=extend_volumes)
def get_parser():