Browse Source

[downloader/fragment] Report warning instead of error on inconsistent download state

master-ytdl-org
Sergey M․ 7 years ago
parent
commit
6f3b4a98c9
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/downloader/fragment.py

+ 1
- 1
youtube_dl/downloader/fragment.py View File

@ -158,7 +158,7 @@ class FragmentFD(FileDownloader):
if os.path.isfile(encodeFilename(self.ytdl_filename(ctx['filename']))):
self._read_ytdl_file(ctx)
if ctx['fragment_index'] > 0 and resume_len == 0:
self.report_error(
self.report_warning(
'Inconsistent state of incomplete fragment download. '
'Restarting from the beginning...')
ctx['fragment_index'] = resume_len = 0


Loading…
Cancel
Save