mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 08:07:06 -05:00 
			
		
		
		
	[CeskaTelevize] fix python3 support @dstftw
This commit is contained in:
		@@ -3,7 +3,6 @@ from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
import re
 | 
			
		||||
import json
 | 
			
		||||
from urllib import unquote
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
from ..utils import (
 | 
			
		||||
@@ -70,7 +69,7 @@ class CeskaTelevizeIE(InfoExtractor):
 | 
			
		||||
 | 
			
		||||
        playlistpage = self._download_webpage(req, video_id)
 | 
			
		||||
 | 
			
		||||
        req = compat_urllib_request.Request(unquote(json.loads(playlistpage)['url']))
 | 
			
		||||
        req = compat_urllib_request.Request(compat_urllib_parse.unquote(json.loads(playlistpage)['url']))
 | 
			
		||||
        req.add_header('Referer', url)
 | 
			
		||||
 | 
			
		||||
        playlist = self._download_xml(req, video_id)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user