1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2025-11-04 10:47:08 -05:00

[yandexmusic] Improve error handling

This commit is contained in:
Sergey M․
2016-04-28 21:37:34 +06:00
parent 0cbcbdd89d
commit eebe6b382e

View File

@@ -18,6 +18,7 @@ from ..utils import (
class YandexMusicBaseIE(InfoExtractor):
@staticmethod
def _handle_error(response):
if isinstance(response, dict):
error = response.get('error')
if error:
raise ExtractorError(error, expected=True)