Explorar o código

[xnxx] Use compat_urllib_parse_unquote

Sergey M․ %!s(int64=10) %!d(string=hai) anos
pai
achega
7dde5f6a8d
Modificáronse 1 ficheiros con 2 adicións e 4 borrados
  1. 2 4
      youtube_dl/extractor/xnxx.py

+ 2 - 4
youtube_dl/extractor/xnxx.py

@@ -2,9 +2,7 @@
 from __future__ import unicode_literals
 
 from .common import InfoExtractor
-from ..compat import (
-    compat_urllib_parse,
-)
+from ..compat import compat_urllib_parse_unquote
 
 
 class XNXXIE(InfoExtractor):
@@ -26,7 +24,7 @@ class XNXXIE(InfoExtractor):
 
         video_url = self._search_regex(r'flv_url=(.*?)&',
                                        webpage, 'video URL')
-        video_url = compat_urllib_parse.unquote(video_url)
+        video_url = compat_urllib_parse_unquote(video_url)
 
         video_title = self._html_search_regex(r'<title>(.*?)\s+-\s+XNXX.COM',
                                               webpage, 'title')