mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[viu] Fix extraction on older python 2.6
This commit is contained in:
		| @@ -4,7 +4,10 @@ from __future__ import unicode_literals | ||||
| import re | ||||
|  | ||||
| from .common import InfoExtractor | ||||
| from ..compat import compat_str | ||||
| from ..compat import ( | ||||
|     compat_kwargs, | ||||
|     compat_str, | ||||
| ) | ||||
| from ..utils import ( | ||||
|     ExtractorError, | ||||
|     int_or_none, | ||||
| @@ -36,7 +39,8 @@ class ViuBaseIE(InfoExtractor): | ||||
|         headers.update(kwargs.get('headers', {})) | ||||
|         kwargs['headers'] = headers | ||||
|         response = self._download_json( | ||||
|             'https://www.viu.com/api/' + path, *args, **kwargs)['response'] | ||||
|             'https://www.viu.com/api/' + path, *args, | ||||
|             **compat_kwargs(kwargs))['response'] | ||||
|         if response.get('status') != 'success': | ||||
|             raise ExtractorError('%s said: %s' % ( | ||||
|                 self.IE_NAME, response['message']), expected=True) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․