[odnoklassniki] Use compat_urllib_parse_unquote

This commit is contained in:
Sergey M․ 2015-07-17 23:45:00 +06:00
parent 9fd3bf04b7
commit b78f5ec4c3
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
from __future__ import unicode_literals
from .common import InfoExtractor
from ..compat import compat_urllib_parse
from ..compat import compat_urllib_parse_unquote
from ..utils import (
unified_strdate,
int_or_none,
@ -62,7 +62,7 @@ class OdnoklassnikiIE(InfoExtractor):
metadata = self._parse_json(metadata, video_id)
else:
metadata = self._download_json(
compat_urllib_parse.unquote(flashvars['metadataUrl']),
compat_urllib_parse_unquote(flashvars['metadataUrl']),
video_id, 'Downloading metadata JSON')
movie = metadata['movie']