[youtube] Make confirm_age non-fatal (#4042)
authorPhilipp Hagemeister <phihag@phihag.de>
Sun, 26 Oct 2014 20:49:29 +0000 (21:49 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sun, 26 Oct 2014 20:49:29 +0000 (21:49 +0100)
youtube_dl/extractor/youtube.py

index 4ab56e0ac6baf7f59f1c8892b5dbe560d96cb195..382d20c5ab4dd70e31f8b8e61cd02299cc35265d 100644 (file)
@@ -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: