commit: bfc2bedcfcbfd531b6f452cae3b7af654ceaab1a
parent 83855f3a1fdf9d344e0b25c757e3eccd9246c2bf
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Sun, 26 Oct 2014 21:49:29 +0100
[youtube] Make confirm_age non-fatal (#4042)
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
@@ -185,8 +185,8 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
self._download_webpage(
req, None,
- note='Confirming age', errnote='Unable to confirm age')
- return True
+ note='Confirming age', errnote='Unable to confirm age',
+ fatal=False)
def _real_initialize(self):
if self._downloader is None: