Skip to content

Commit

Permalink
s/bytes/byte/ and s/bits/bit/. Fixes #89
Browse files Browse the repository at this point in the history
  • Loading branch information
sivel committed Sep 2, 2014
1 parent 60c3ec2 commit b0e1e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion speedtest_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b0e1e58

Please sign in to comment.