summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-17 23:37:56 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-17 23:37:56 +0600
commitd7011316d0bce88796a6d33e895fdafa231fd8ec (patch)
tree72509e54c74f645b5bd0345a96d31341cf6fca83
parentd3671b344f663c3aa82aea86de51a70f24511792 (diff)
downloadyoutube-dl-d7011316d0bce88796a6d33e895fdafa231fd8ec.tar.gz
youtube-dl-d7011316d0bce88796a6d33e895fdafa231fd8ec.tar.xz
youtube-dl-d7011316d0bce88796a6d33e895fdafa231fd8ec.zip
[facebook] Use compat_urllib_parse_unquote
-rw-r--r--youtube_dl/extractor/facebook.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py
index 82dc27bc6..e17bb9aea 100644
--- a/youtube_dl/extractor/facebook.py
+++ b/youtube_dl/extractor/facebook.py
@@ -9,7 +9,7 @@ from ..compat import (
     compat_http_client,
     compat_str,
     compat_urllib_error,
-    compat_urllib_parse,
+    compat_urllib_parse_unquote,
     compat_urllib_request,
 )
 from ..utils import (
@@ -136,7 +136,7 @@ class FacebookIE(InfoExtractor):
             else:
                 raise ExtractorError('Cannot parse data')
         data = dict(json.loads(m.group(1)))
-        params_raw = compat_urllib_parse.unquote(data['params'])
+        params_raw = compat_urllib_parse_unquote(data['params'])
         params = json.loads(params_raw)
         video_data = params['video_data'][0]