From 3fb09eecd514263576cb81f374f554545c7f40ce Mon Sep 17 00:00:00 2001 From: Oleksis Date: Tue, 26 Feb 2019 21:33:14 -0500 Subject: [PATCH] [picta] Fix API_BASE_URL --- youtube_dl/extractor/picta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/picta.py b/youtube_dl/extractor/picta.py index 0b30f155b..adf798748 100644 --- a/youtube_dl/extractor/picta.py +++ b/youtube_dl/extractor/picta.py @@ -12,7 +12,7 @@ from .common import InfoExtractor class PictaBaseIE(InfoExtractor): - API_BASE_URL = 'https://www.picta.cu/api/v1/' + API_BASE_URL = 'https://api.picta.cu/api/v1/' def _extract_video(self, video, video_id=None, require_title=True): title = video['results'][0]['nombre'] if require_title else video.get('results')[0].get('nombre')