summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-02-13 11:36:33 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-02-13 11:36:33 +0100
commitae6423d7042de863c303fcbdc1646ea370233741 (patch)
treea23ebc4e1aa2c2a6797b76fce3a8c6278b00f060
parentc80b9cd280020e4e70e0d4336387d83101bcf50f (diff)
downloadyoutube-dl-ae6423d7042de863c303fcbdc1646ea370233741.tar.gz
youtube-dl-ae6423d7042de863c303fcbdc1646ea370233741.tar.xz
youtube-dl-ae6423d7042de863c303fcbdc1646ea370233741.zip
[bambuser] Fix 'uploader_id' extraction (fixes #4944)
-rw-r--r--youtube_dl/extractor/bambuser.py2
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'],
         }