1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-26 00:59:20 +02:00

[downloader/common] report_retry: Don't crash when retries is infinite (fixes #8299)

This commit is contained in:
Jaime Marquínez Ferrándiz 2016-01-22 14:49:17 +01:00
parent 032f232626
commit 32d77eeb04

View File

@ -295,7 +295,7 @@ def report_resuming_byte(self, resume_len):
def report_retry(self, count, retries):
"""Report retry in case of HTTP error 5xx"""
self.to_screen('[download] Got server HTTP error. Retrying (attempt %d of %d)...' % (count, retries))
self.to_screen('[download] Got server HTTP error. Retrying (attempt %d of %.0f)...' % (count, retries))
def report_file_already_downloaded(self, file_name):
"""Report file has already been fully downloaded."""