Fix `--throttled-rate`

Typo in d1b5f70bc9

Closes #2996
This commit is contained in:
pukkandan 2022-03-10 03:25:38 +05:30
parent 33b8c411bc
commit 51c22ef4e2
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ def validate_options(opts):
return numeric_limit
opts.ratelimit = parse_bytes('rate limit', opts.ratelimit)
opts.ratelimit = parse_bytes('throttled rate limit', opts.throttledratelimit)
opts.throttledratelimit = parse_bytes('throttled rate limit', opts.throttledratelimit)
opts.min_filesize = parse_bytes('min filesize', opts.min_filesize)
opts.max_filesize = parse_bytes('max filesize', opts.max_filesize)
opts.buffersize = parse_bytes('buffer size', opts.buffersize)