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)