From: Philipp Hagemeister Date: Thu, 21 Aug 2014 10:15:51 +0000 (+0200) Subject: [youtube] Handle incorrectly written cache files (#3549) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=55c49908d29bbfb3287159be29e9991f1d5f5b2c;p=youtube-dl [youtube] Handle incorrectly written cache files (#3549) --- diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 3c9b0b584..8b520e0f0 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -374,6 +374,13 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor): return lambda s: u''.join(s[i] for i in cache_spec) except IOError: pass # No cache available + except ValueError: + try: + file_size = os.path.getsize(cache_fn) + except (OSError, IOError) as oe: + file_size = str(oe) + self._downloader.report_warning( + u'Cache %s failed (%s)' % (cache_fn, file_size)) if player_type == 'js': code = self._download_webpage(