diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-24 11:28:44 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-24 11:28:44 +0100 | 
| commit | dc65dcbb6d709ef6e38f336fe77c14767d6c8f9d (patch) | |
| tree | 7a088a4c5fbbec1951777d84d57f8cf174b8f1f6 | |
| parent | d214fdb8fe796e92485e28038ee72d28caa3ad10 (diff) | |
[mixcloud] The description field may be missing (fixes #1819)
| -rw-r--r-- | youtube_dl/extractor/mixcloud.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/mixcloud.py b/youtube_dl/extractor/mixcloud.py index a200dcd74..e2baf44d7 100644 --- a/youtube_dl/extractor/mixcloud.py +++ b/youtube_dl/extractor/mixcloud.py @@ -60,7 +60,7 @@ class MixcloudIE(InfoExtractor):              'title': info['name'],              'url': final_song_url,              'ext': 'mp3', -            'description': info['description'], +            'description': info.get('description'),              'thumbnail': info['pictures'].get('extra_large'),              'uploader': info['user']['name'],              'uploader_id': info['user']['username'], | 
