Browse Source

[yandexmusic] Improve error handling

totalwebcasting
Sergey M․ 9 years ago
parent
commit
eebe6b382e
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      youtube_dl/extractor/yandexmusic.py

+ 4
- 3
youtube_dl/extractor/yandexmusic.py View File

@ -18,9 +18,10 @@ from ..utils import (
class YandexMusicBaseIE(InfoExtractor):
@staticmethod
def _handle_error(response):
error = response.get('error')
if error:
raise ExtractorError(error, expected=True)
if isinstance(response, dict):
error = response.get('error')
if error:
raise ExtractorError(error, expected=True)
def _download_webpage(self, *args, **kwargs):
webpage = super(YandexMusicBaseIE, self)._download_webpage(*args, **kwargs)


Loading…
Cancel
Save