Skip to content

Commit

Permalink
YoutubeDL: fix --throttled-rate
Browse files Browse the repository at this point in the history
  • Loading branch information
Lesmiscore committed Mar 9, 2022
1 parent 0c4790d commit a375046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def parse_bytes(name, value):
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)
Expand Down

0 comments on commit a375046

Please sign in to comment.