Changed to uppercase B for Bytes

This makes it clearer, and is the standard way of representing the difference between bit and Byte.
This commit is contained in:
John Bradshaw 2018-10-02 08:56:09 +01:00
parent 72ed585c6f
commit be262513fc
No known key found for this signature in database
GPG Key ID: F65C64EB37858325
1 changed files with 1 additions and 1 deletions

View File

@ -1626,7 +1626,7 @@ def parse_args():
action='store_const', const=False,
help='Do not perform upload test')
parser.add_argument('--bytes', dest='units', action='store_const',
const=('byte', 8), default=('bit', 1),
const=('Byte', 8), default=('bit', 1),
help='Display values in bytes instead of bits. Does '
'not affect the image generated by --share, nor '
'output from --json or --csv')