s/bytes/byte/ and s/bits/bit/. Fixes #89

This commit is contained in:
Matt Martz 2014-09-02 15:06:14 -05:00
parent 60c3ec2a5e
commit b0e1e58a0b
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ def speedtest():
except AttributeError:
pass
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 '
'not affect the image generated by --share')
parser.add_argument('--share', action='store_true',