From dea147f78e62755c920569cec67b631e28f9a98e Mon Sep 17 00:00:00 2001 From: Ricardo Garcia Date: Tue, 6 Jul 2010 18:51:45 +0200 Subject: [PATCH] Remove unused methods from the Dailymotion InfoExtractor --- youtube-dl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/youtube-dl b/youtube-dl index dbe348f1f..19acce127 100755 --- a/youtube-dl +++ b/youtube-dl @@ -1097,14 +1097,6 @@ class DailymotionIE(InfoExtractor): def suitable(url): return (re.match(DailymotionIE._VALID_URL, url) is not None) - def report_disclaimer(self): - """Report disclaimer retrieval.""" - self._downloader.to_stdout(u'[dailymotion] Retrieving disclaimer') - - def report_age_confirmation(self): - """Report attempt to confirm age.""" - self._downloader.to_stdout(u'[dailymotion] Confirming age') - def report_download_webpage(self, video_id): """Report webpage download.""" self._downloader.to_stdout(u'[dailymotion] %s: Downloading webpage' % video_id)