mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[openfilm] Use compat_urllib_parse_unquote_plus
This commit is contained in:
parent
b78f5ec4c3
commit
d54f1c7477
@ -5,7 +5,7 @@
|
||||
from .common import InfoExtractor
|
||||
from ..utils import (
|
||||
parse_iso8601,
|
||||
compat_urllib_parse,
|
||||
compat_urllib_parse_unquote_plus,
|
||||
parse_age_limit,
|
||||
int_or_none,
|
||||
)
|
||||
@ -37,7 +37,7 @@ def _real_extract(self, url):
|
||||
|
||||
webpage = self._download_webpage(url, display_id)
|
||||
|
||||
player = compat_urllib_parse.unquote_plus(
|
||||
player = compat_urllib_parse_unquote_plus(
|
||||
self._og_search_video_url(webpage))
|
||||
|
||||
video = json.loads(self._search_regex(
|
||||
|
Loading…
Reference in New Issue
Block a user