Skip to content

Commit

Permalink
Update youtube_dl/extractor/bandlab.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkf committed Jan 23, 2024
1 parent f7c7ffb commit 00d8a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/bandlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _real_extract(self, url):
entries = []
for track in traverse_obj(config, ('posts', Ellipsis)):
url, name = (traverse_obj(track, ('track', {
'url': ('sample', 'audioUrl', T(url_or_none)
'url': ('sample', 'audioUrl', T(url_or_none)),
'name': ('name', T(txt_or_none)),
}), ('revision', {
'url': ('mixdown', 'file', T(url_or_none)),
Expand Down

0 comments on commit 00d8a07

Please sign in to comment.