[cleanup] Revert unnecessary changes in 51d9739f80

This commit is contained in:
pukkandan 2021-06-23 05:33:52 +05:30
parent 51d9739f80
commit 8a77e5e6bc
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@ from ..utils import (
format_bytes,
shell_quote,
timeconvert,
ThrottledDownload,
)
@ -172,7 +171,7 @@ class FileDownloader(object):
def slow_down(self, start_time, now, byte_counter):
"""Sleep if the download speed is over the rate limit."""
rate_limit = self.params.get('ratelimit')
if byte_counter == 0:
if rate_limit is None or byte_counter == 0:
return
if now is None:
now = time.time()
@ -180,7 +179,7 @@ class FileDownloader(object):
if elapsed <= 0.0:
return
speed = float(byte_counter) / elapsed
if rate_limit is not None and speed > rate_limit:
if speed > rate_limit:
sleep_time = float(byte_counter) / rate_limit - elapsed
if sleep_time > 0:
time.sleep(sleep_time)