Browse Source

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

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

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

Loading…
Cancel
Save