From 10b76a6853b0a1a2c4cc1eaf08b0f1cf829e6fe9 Mon Sep 17 00:00:00 2001 From: Mariusz Skoneczko Date: Mon, 10 Jul 2017 10:30:25 +1000 Subject: [PATCH] [AnimeLab] Remove title construction warning as fallback is present --- youtube_dl/extractor/animelab.py | 1 - 1 file changed, 1 deletion(-) diff --git a/youtube_dl/extractor/animelab.py b/youtube_dl/extractor/animelab.py index 16cbd2a5a..cdf135970 100644 --- a/youtube_dl/extractor/animelab.py +++ b/youtube_dl/extractor/animelab.py @@ -134,7 +134,6 @@ class AnimeLabIE(InfoExtractor): if None not in title_parts: title = '%s - %s %s - %s' % title_parts else: - self.report_warning('Could not get all necessary data to contruct title manually, trying alternative sources...') title = self._search_regex(r'AnimeLab - (.*) - Watch Online', webpage, 'Title from html') description = raw_data.get('synopsis') or self._og_search_description(webpage, default=None)