aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/aenetworks.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-06-29 16:03:32 +0100
committerRemita Amine <remitamine@gmail.com>2016-06-29 16:03:32 +0100
commit4c7821227c54836a17d9c02d4f8d3dcbd97105fc (patch)
tree4eabf4dd83e83a89883e20a172ea63525d0773c2 /youtube_dl/extractor/aenetworks.py
parent42362fdb5e780611b7054e52eb28621f5a9fd7ba (diff)
downloadyoutube-dl-4c7821227c54836a17d9c02d4f8d3dcbd97105fc.tar.xz
[aenetworks:historytopic] fix topic video url
Diffstat (limited to 'youtube_dl/extractor/aenetworks.py')
-rw-r--r--youtube_dl/extractor/aenetworks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/aenetworks.py b/youtube_dl/extractor/aenetworks.py
index cbde8b46e..1376dd70f 100644
--- a/youtube_dl/extractor/aenetworks.py
+++ b/youtube_dl/extractor/aenetworks.py
@@ -161,7 +161,7 @@ class HistoryTopicIE(AENetworksBaseIE):
for episode_item in re.findall(r'<a.+?data-release-url="[^"]+"[^>]*>', webpage):
video_attributes = extract_attributes(episode_item)
entries.append(self.theplatform_url_result(
- video_attributes['data-href'], video_attributes['data-id'], {
+ video_attributes['data-release-url'], video_attributes['data-id'], {
'mbr': 'true',
'switch': 'hls'
}))