diff options
author | Duncan <duncan@vtllf.org> | 2015-05-10 15:01:58 +1200 |
---|---|---|
committer | Duncan <duncan@vtllf.org> | 2015-05-10 15:01:58 +1200 |
commit | f900dc3fb9e17e399b0f33925ee239696cc46010 (patch) | |
tree | da5b2c1f13298b33af4538e10e27f670c540ee46 /youtube_dl | |
parent | c6ddbdb66c5d6ead5e198013c54ef53d641063f1 (diff) |
[voicerepublic] Extract author using _html_search_meta
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/voicerepublic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/voicerepublic.py b/youtube_dl/extractor/voicerepublic.py index 1a90693cb..7d255d6fa 100644 --- a/youtube_dl/extractor/voicerepublic.py +++ b/youtube_dl/extractor/voicerepublic.py @@ -51,5 +51,5 @@ class VoiceRepublicIE(InfoExtractor): 'url': self._og_search_url(webpage), 'thumbnail': thumbnail, 'description': self._og_search_description(webpage), - 'creator': self._search_regex(r'<meta content=\'([^\']*?)\' name=\'author\'>', webpage, 'author', fatal=False), + 'creator': self._html_search_meta('author', webpage), } |