aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/zdf.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-11-28 05:47:50 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-11-28 05:47:50 +0100
commit2a275ab007d6d336b44a6a0cd4fac6783ba63cb8 (patch)
tree3de733092f553dbf75b4bec25bfe9a1f008013f8 /youtube_dl/extractor/zdf.py
parenta2e6db365c11d8c9eaaaeb8de53d59add648f978 (diff)
downloadyoutube-dl-2a275ab007d6d336b44a6a0cd4fac6783ba63cb8.tar.xz
[zdf] Use _download_xml
Diffstat (limited to 'youtube_dl/extractor/zdf.py')
-rw-r--r--youtube_dl/extractor/zdf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/zdf.py b/youtube_dl/extractor/zdf.py
index 3c01cc041..689f19735 100644
--- a/youtube_dl/extractor/zdf.py
+++ b/youtube_dl/extractor/zdf.py
@@ -5,7 +5,6 @@ import re
from .common import InfoExtractor
from ..utils import (
- parse_xml_doc,
unified_strdate,
)
@@ -30,9 +29,10 @@ class ZDFIE(InfoExtractor):
video_id = mobj.group('video_id')
xml_url = u'http://www.zdf.de/ZDFmediathek/xmlservice/web/beitragsDetails?ak=web&id=%s' % video_id
- info_xml = self._download_webpage(
- xml_url, video_id, note=u'Downloading video info')
- doc = parse_xml_doc(info_xml)
+ doc = self._download_xml(
+ xml_url, video_id,
+ note=u'Downloading video info',
+ errnote=u'Failed to download video info')
title = doc.find('.//information/title').text
description = doc.find('.//information/detail').text