From: Jaime Marquínez Ferrándiz Date: Fri, 13 Feb 2015 10:36:33 +0000 (+0100) Subject: [bambuser] Fix 'uploader_id' extraction (fixes #4944) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=ae6423d7042de863c303fcbdc1646ea370233741;p=youtube-dl [bambuser] Fix 'uploader_id' extraction (fixes #4944) --- diff --git a/youtube_dl/extractor/bambuser.py b/youtube_dl/extractor/bambuser.py index 98e1443ab..c193e66ca 100644 --- a/youtube_dl/extractor/bambuser.py +++ b/youtube_dl/extractor/bambuser.py @@ -50,7 +50,7 @@ class BambuserIE(InfoExtractor): 'duration': int(info['length']), 'view_count': int(info['views_total']), 'uploader': info['username'], - 'uploader_id': info['uid'], + 'uploader_id': info['owner']['uid'], }