youtube-dl

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

commit 5966095e65b5365e8e4d211ffca6ab50514d3c84
parent 9ee984fc760c9a3f4818055ff28ea886aadc58cb
Author: Remita Amine <remitamine@gmail.com>
Date:   Tue, 29 Dec 2020 16:59:31 +0100

[aenetworks] fix HistoryPlayerIE tests

Diffstat:
Myoutube_dl/extractor/aenetworks.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/aenetworks.py b/youtube_dl/extractor/aenetworks.py @@ -306,6 +306,7 @@ class HistoryTopicIE(AENetworksBaseIE): class HistoryPlayerIE(AENetworksBaseIE): IE_NAME = 'history:player' _VALID_URL = r'https?://(?:www\.)?(?P<domain>(?:history|biography)\.com)/player/(?P<id>\d+)' + _TESTS = [] def _real_extract(self, url): domain, video_id = re.match(self._VALID_URL, url).groups()