Browse Source

[bambuser] Fix 'uploader_id' extraction (fixes #4944)

totalwebcasting
Jaime Marquínez Ferrándiz 10 years ago
parent
commit
ae6423d704
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/bambuser.py

+ 1
- 1
youtube_dl/extractor/bambuser.py View File

@ -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'],
}


Loading…
Cancel
Save