aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/arte.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-02-17 22:51:08 +0600
committerSergey M․ <dstftw@gmail.com>2016-02-17 22:51:08 +0600
commit8bbd3d14765a836f72beb2d9dc53832872845669 (patch)
tree23eb42e569b9cdf71a57b391c0c5ddae014af8cc /youtube_dl/extractor/arte.py
parente725e4bced92f4eb6c406d6ce01fa361c972fe30 (diff)
downloadyoutube-dl-8bbd3d14765a836f72beb2d9dc53832872845669.tar.xz
[arte] Fix upload date extraction (Closes #8581)
Diffstat (limited to 'youtube_dl/extractor/arte.py')
-rw-r--r--youtube_dl/extractor/arte.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/arte.py b/youtube_dl/extractor/arte.py
index 5ec67bc9c..c416f82ee 100644
--- a/youtube_dl/extractor/arte.py
+++ b/youtube_dl/extractor/arte.py
@@ -126,7 +126,7 @@ class ArteTVPlus7IE(InfoExtractor):
upload_date_str = player_info.get('shootingDate')
if not upload_date_str:
- upload_date_str = player_info.get('VDA', '').split(' ')[0]
+ upload_date_str = (player_info.get('VRA') or player_info.get('VDA') or '').split(' ')[0]
title = player_info['VTI'].strip()
subtitle = player_info.get('VSU', '').strip()