diff options
author | Elan Ruusamäe <glen@pld-linux.org> | 2019-01-01 18:56:05 +0200 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2019-01-01 23:56:05 +0700 |
commit | d226c560a6250d03ff5f27d5b078f894d448a0b4 (patch) | |
tree | d81cfb1ad4e3521f8fba2dd80bb02619695684c4 /youtube_dl/extractor/freespeech.py | |
parent | 8437f5089f2fac85a249c4368c2ea1415955d8b0 (diff) |
Refactor code to use url_result
Diffstat (limited to 'youtube_dl/extractor/freespeech.py')
-rw-r--r-- | youtube_dl/extractor/freespeech.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/youtube_dl/extractor/freespeech.py b/youtube_dl/extractor/freespeech.py index 486a49c05..ea9c3e317 100644 --- a/youtube_dl/extractor/freespeech.py +++ b/youtube_dl/extractor/freespeech.py @@ -1,6 +1,7 @@ from __future__ import unicode_literals from .common import InfoExtractor +from .youtube import YoutubeIE class FreespeechIE(InfoExtractor): @@ -27,8 +28,4 @@ class FreespeechIE(InfoExtractor): r'data-video-url="([^"]+)"', webpage, 'youtube url') - return { - '_type': 'url', - 'url': youtube_url, - 'ie_key': 'Youtube', - } + return self.url_result(youtube_url, YoutubeIE.ie_key()) |