[vevo] Simplify artists extraction

pull/8/head
Sergey M․ 2016-11-24 23:09:35 +07:00
rodzic 8b27d83e4e
commit e94eeb1dd3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 2C393E0F18A9236D
1 zmienionych plików z 2 dodań i 6 usunięć

Wyświetl plik

@ -259,14 +259,10 @@ class VevoIE(VevoBaseIE):
timestamp = parse_iso8601(video_info.get('releaseDate'))
artists = video_info.get('artists')
for curr_artist in artists:
if 'role' in curr_artist:
if curr_artist['role'] == 'Featured':
featured_artist = curr_artist['name']
elif curr_artist['role'] == 'Main':
artist = uploader = curr_artist['name']
if curr_artist.get('role') == 'Featured':
featured_artist = curr_artist['name']
else:
artist = uploader = curr_artist['name']
break
view_count = int_or_none(video_info.get('views', {}).get('total'))
for video_version in video_versions: