s/bytes/byte/ and s/bits/bit/. Fixes #89
This commit is contained in:
parent
60c3ec2a5e
commit
b0e1e58a0b
|
@ -487,7 +487,7 @@ def speedtest():
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
pass
|
pass
|
||||||
parser.add_argument('--bytes', dest='units', action='store_const',
|
parser.add_argument('--bytes', dest='units', action='store_const',
|
||||||
const=('bytes', 1), default=('bits', 8),
|
const=('byte', 1), default=('bit', 8),
|
||||||
help='Display values in bytes instead of bits. Does '
|
help='Display values in bytes instead of bits. Does '
|
||||||
'not affect the image generated by --share')
|
'not affect the image generated by --share')
|
||||||
parser.add_argument('--share', action='store_true',
|
parser.add_argument('--share', action='store_true',
|
||||||
|
|
Loading…
Reference in New Issue