aboutsummaryrefslogtreecommitdiff
path: root/youtube_dlc/extractor/bandcamp.py
diff options
context:
space:
mode:
authorUnknown <blackjack4494@web.de>2020-10-29 01:56:55 +0100
committerUnknown <blackjack4494@web.de>2020-10-29 01:56:55 +0100
commit0704d2224b328caeafbce6a029904472628d12bd (patch)
tree89b4db564773eb2ac68d023d9a5b809fe8ed4e9e /youtube_dlc/extractor/bandcamp.py
parentddb77f30ee597aa5d23079fe6654b7e2e4a91656 (diff)
[core] be able to hand over id and title using url_result
Diffstat (limited to 'youtube_dlc/extractor/bandcamp.py')
-rw-r--r--youtube_dlc/extractor/bandcamp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/bandcamp.py b/youtube_dlc/extractor/bandcamp.py
index 7d29481c0..0e7492764 100644
--- a/youtube_dlc/extractor/bandcamp.py
+++ b/youtube_dlc/extractor/bandcamp.py
@@ -332,7 +332,7 @@ class BandcampAlbumIE(BandcampBaseIE):
entries = [
self.url_result(
compat_urlparse.urljoin(url, track['title_link']),
- ie=BandcampIE.ie_key(),
+ ie=BandcampIE.ie_key(), video_id=track['id'],
video_title=track['title'])
for track in tracks
if track.get('duration')]