Browse Source

[downloader/http] Report unable to resume

master
Sergey M․ 9 years ago
parent
commit
10eaa8ef1d
1 changed files with 1 additions and 0 deletions
  1. 1
      youtube_dl/downloader/http.py

1
youtube_dl/downloader/http.py

@ -66,6 +66,7 @@ class HttpFD(FileDownloader):
if content_range_m and resume_len == int(content_range_m.group(1)): if content_range_m and resume_len == int(content_range_m.group(1)):
break break
# Content-Range is invalid - wipe the file and do entire redownload # Content-Range is invalid - wipe the file and do entire redownload
self.report_unable_to_resume()
resume_len = 0 resume_len = 0
open_mode = 'wb' open_mode = 'wb'
break break

Loading…
Cancel
Save