From be262513fcdeae53b7dbf35c2ddb0ccbe862e0d5 Mon Sep 17 00:00:00 2001 From: John Bradshaw Date: Tue, 2 Oct 2018 08:56:09 +0100 Subject: [PATCH] Changed to uppercase B for Bytes This makes it clearer, and is the standard way of representing the difference between bit and Byte. --- speedtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speedtest.py b/speedtest.py index 7a99c99..82edf59 100755 --- a/speedtest.py +++ b/speedtest.py @@ -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')