diff options
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index fb6d816cc..2aad855c8 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -2620,10 +2620,13 @@ class YoutubeTabIE(YoutubeBaseInfoExtractor):      }, {          'url': 'https://www.youtube.com/c/CommanderVideoHq/live',          'only_matching': True, -    }, { -        'url': 'https://www.youtube.com/TheYoungTurks/live', -        'only_matching': True, -    }] +    }, +    # TODO +    # { +    #     'url': 'https://www.youtube.com/TheYoungTurks/live', +    #     'only_matching': True, +    # } +    ]      def _extract_channel_id(self, webpage):          channel_id = self._html_search_meta( | 
