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/livestream.py | |
parent | 8437f5089f2fac85a249c4368c2ea1415955d8b0 (diff) |
Refactor code to use url_result
Diffstat (limited to 'youtube_dl/extractor/livestream.py')
-rw-r--r-- | youtube_dl/extractor/livestream.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py index c4776bbf3..e55b1a202 100644 --- a/youtube_dl/extractor/livestream.py +++ b/youtube_dl/extractor/livestream.py @@ -363,7 +363,4 @@ class LivestreamShortenerIE(InfoExtractor): id = mobj.group('id') webpage = self._download_webpage(url, id) - return { - '_type': 'url', - 'url': self._og_search_url(webpage), - } + return self.url_result(self._og_search_url(webpage)) |