diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-07-01 18:52:19 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-07-01 18:52:19 +0200 |
commit | 0f818663291752b2084d81aff76d945a43c66a06 (patch) | |
tree | b70d0df45ab1f751e79f924733e8a582fd7e2420 /youtube_dl/extractor/yahoo.py | |
parent | 2db67bc0f40d8a2938145a6630901360834cf387 (diff) |
Add --list-extractor-descriptions (human-readable list of IEs)
Diffstat (limited to 'youtube_dl/extractor/yahoo.py')
-rw-r--r-- | youtube_dl/extractor/yahoo.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py index 1f98f24eb..32d5b9477 100644 --- a/youtube_dl/extractor/yahoo.py +++ b/youtube_dl/extractor/yahoo.py @@ -11,7 +11,7 @@ from ..utils import ( ) class YahooIE(InfoExtractor): - """Information extractor for screen.yahoo.com.""" + IE_DESC = u'Yahoo screen' _VALID_URL = r'http://screen\.yahoo\.com/.*?-(?P<id>\d*?)\.html' _TEST = { u'url': u'http://screen.yahoo.com/julian-smith-travis-legg-watch-214727115.html', @@ -88,8 +88,7 @@ class YahooIE(InfoExtractor): return info_dict class YahooSearchIE(SearchInfoExtractor): - """Information Extractor for Yahoo! Video search queries.""" - + IE_DESC = u'Yahoo screen search' _MAX_RESULTS = 1000 IE_NAME = u'screen.yahoo:search' _SEARCH_KEY = 'yvsearch' |