diff --git a/cinderclient/v1/shell.py b/cinderclient/v1/shell.py index 3896ac3ab..6049f0322 100644 --- a/cinderclient/v1/shell.py +++ b/cinderclient/v1/shell.py @@ -214,7 +214,7 @@ def do_show(cs, args): @utils.arg('size', metavar='', type=int, - help='Volume size, in GBs.') + help='Volume size, in GiBs.') @utils.arg( '--snapshot-id', metavar='', @@ -1039,7 +1039,7 @@ def do_transfer_show(cs, args): @utils.arg('new_size', metavar='', type=int, - help='Size of volume, in GBs.') + help='Size of volume, in GiBs.') @utils.service_type('volume') def do_extend(cs, args): """Attempts to extend size of an existing volume.""" diff --git a/cinderclient/v2/shell.py b/cinderclient/v2/shell.py index b4447d9ab..9b2ac880e 100644 --- a/cinderclient/v2/shell.py +++ b/cinderclient/v2/shell.py @@ -282,7 +282,7 @@ class CheckSizeArgForCreate(argparse.Action): nargs='?', type=int, action=CheckSizeArgForCreate, - help='Size of volume, in GBs. (Required unless ' + help='Size of volume, in GiBs. (Required unless ' 'snapshot-id/source-volid is specified).') @utils.arg('--consisgroup-id', metavar='', @@ -1520,7 +1520,7 @@ def do_transfer_show(cs, args): @utils.arg('new_size', metavar='', type=int, - help='New size of volume, in GBs.') + help='New size of volume, in GiBs.') @utils.service_type('volumev2') def do_extend(cs, args): """Attempts to extend size of an existing volume."""