From 9299e0860c39902d44e6fc0f2f4d386c4b3ae56d Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Wed, 14 Sep 2016 10:34:38 -0500 Subject: [PATCH] Add additional note that --bytes doesn't affect json or csv --- speedtest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/speedtest.py b/speedtest.py index a61f184..7b8e890 100755 --- a/speedtest.py +++ b/speedtest.py @@ -1080,7 +1080,8 @@ def parse_args(): parser.add_argument('--bytes', dest='units', action='store_const', const=('byte', 8), default=('bit', 1), help='Display values in bytes instead of bits. Does ' - 'not affect the image generated by --share') + 'not affect the image generated by --share, nor ' + 'output from --json or --csv') parser.add_argument('--share', action='store_true', help='Generate and provide a URL to the speedtest.net ' 'share results image')