From b09bb338018860f22cbdbb6271a40333238fa9ec Mon Sep 17 00:00:00 2001 From: Robert Jacobson Date: Sun, 22 Mar 2020 08:08:36 -0400 Subject: [PATCH] change to_screen output to debug_out --- youtube_dl/extractor/digitalconcerthall.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/digitalconcerthall.py b/youtube_dl/extractor/digitalconcerthall.py index f38d12d22..e63983e6d 100644 --- a/youtube_dl/extractor/digitalconcerthall.py +++ b/youtube_dl/extractor/digitalconcerthall.py @@ -38,7 +38,7 @@ class DigitalConcertHallIE(InfoExtractor): self.debug_out("url: " + url + " video_id: " + video_id + " language: " + language) webpage = self._download_webpage(url, video_id) title = self._html_search_regex(r'(.+?)', webpage, 'title') - self.to_screen("title: " + title) + self.debug_out("title: " + title) # this returns JSON containing the urls of the playlist playlist_dict = self._download_json( @@ -58,7 +58,7 @@ class DigitalConcertHallIE(InfoExtractor): self.debug_out("vid_info_div:\n" + vid_info_div) title = re.sub(r'\s+', ' ', vid_info_div) \ or self._og_search_title(webpage) - self.to_screen("title: " + title) + self.debug_out("title: " + title) entries.append({ 'id': key, 'title': title,