]> Raphaƫl G. Git Repositories - youtubedl/blobdiff - youtube_dl/extractor/played.py
Imported Upstream version 2016.06.25
[youtubedl] / youtube_dl / extractor / played.py
index 2856af96f49cf7928a0dd4fe79ccd287592fb3c1..57c875ef05dd74a429ea55313b0d956ef7e5ec56 100644 (file)
@@ -5,10 +5,10 @@ import re
 import os.path
 
 from .common import InfoExtractor
-from ..compat import compat_urllib_parse
 from ..utils import (
     ExtractorError,
     sanitized_Request,
+    urlencode_postdata,
 )
 
 
@@ -40,7 +40,7 @@ class PlayedIE(InfoExtractor):
 
         self._sleep(2, video_id)
 
-        post = compat_urllib_parse.urlencode(data)
+        post = urlencode_postdata(data)
         headers = {
             b'Content-Type': b'application/x-www-form-urlencoded',
         }