diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-02-13 11:36:33 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-02-13 11:36:33 +0100 |
commit | ae6423d7042de863c303fcbdc1646ea370233741 (patch) | |
tree | a23ebc4e1aa2c2a6797b76fce3a8c6278b00f060 | |
parent | c80b9cd280020e4e70e0d4336387d83101bcf50f (diff) |
[bambuser] Fix 'uploader_id' extraction (fixes #4944)
-rw-r--r-- | youtube_dl/extractor/bambuser.py | 2 |
1 files changed, 1 insertions, 1 deletions
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'], } |