aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/photobucket.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-17 23:45:55 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-17 23:45:55 +0600
commit2ebbb6f1f771e5c81b103b6216073341e85cc1aa (patch)
treea01d3bc3901dc7e384170df2c7f83ac932851dbb /youtube_dl/extractor/photobucket.py
parentd54f1c74776a8d6c7cf07ae16ae67bd39ee51f93 (diff)
downloadyoutube-dl-2ebbb6f1f771e5c81b103b6216073341e85cc1aa.tar.xz
[photobucket] Use compat_urllib_parse_unquote
Diffstat (limited to 'youtube_dl/extractor/photobucket.py')
-rw-r--r--youtube_dl/extractor/photobucket.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/photobucket.py b/youtube_dl/extractor/photobucket.py
index c66db3cdc..788411ccc 100644
--- a/youtube_dl/extractor/photobucket.py
+++ b/youtube_dl/extractor/photobucket.py
@@ -4,7 +4,7 @@ import json
import re
from .common import InfoExtractor
-from ..compat import compat_urllib_parse
+from ..compat import compat_urllib_parse_unquote
class PhotobucketIE(InfoExtractor):
@@ -34,7 +34,7 @@ class PhotobucketIE(InfoExtractor):
info_json = self._search_regex(r'Pb\.Data\.Shared\.put\(Pb\.Data\.Shared\.MEDIA, (.*?)\);',
webpage, 'info json')
info = json.loads(info_json)
- url = compat_urllib_parse.unquote(self._html_search_regex(r'file=(.+\.mp4)', info['linkcodes']['html'], 'url'))
+ url = compat_urllib_parse_unquote(self._html_search_regex(r'file=(.+\.mp4)', info['linkcodes']['html'], 'url'))
return {
'id': video_id,
'url': url,