youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit ee3d5a6d476ccca626bd4878e2cf871373fe5ca9
parent 46fde8a1a2e72bca3c22b6de4db06490fb90b59a
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 26 Sep 2015 19:57:17 +0600

[bbc] Skip mediaselection on gelocation error (Closes #6983)

Diffstat:
Myoutube_dl/extractor/bbc.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py @@ -294,7 +294,7 @@ class BBCCoUkIE(InfoExtractor): return self._download_media_selector_url( mediaselector_url % programme_id, programme_id) except BBCCoUkIE.MediaSelectionError as e: - if e.id == 'notukerror': + if e.id in ('notukerror', 'geolocation'): last_exception = e continue self._raise_extractor_error(e)