aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/openfilm.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-17 23:45:26 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-17 23:45:26 +0600
commitd54f1c74776a8d6c7cf07ae16ae67bd39ee51f93 (patch)
treeef88c1d2ff1ad887f7aaf4e234507fd4f666c16b /youtube_dl/extractor/openfilm.py
parentb78f5ec4c338e5e9379c1d7a2b0c99451e06897a (diff)
downloadyoutube-dl-d54f1c74776a8d6c7cf07ae16ae67bd39ee51f93.tar.xz
[openfilm] Use compat_urllib_parse_unquote_plus
Diffstat (limited to 'youtube_dl/extractor/openfilm.py')
-rw-r--r--youtube_dl/extractor/openfilm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/openfilm.py b/youtube_dl/extractor/openfilm.py
index 2249657eb..7e10bdf2c 100644
--- a/youtube_dl/extractor/openfilm.py
+++ b/youtube_dl/extractor/openfilm.py
@@ -5,7 +5,7 @@ import json
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 @@ class OpenFilmIE(InfoExtractor):
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(