summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-10-27 02:14:07 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-10-27 02:14:07 +0100
commitaea856621fa24cbe7125ba8f38ed1dfce73cada6 (patch)
treece7a865cca7dc5ae0eeaba1bae1870feb50ef472
parentf24a5a2faab20e13c3a9f752f3d41fe66212d2c6 (diff)
downloadyoutube-dl-aea856621fa24cbe7125ba8f38ed1dfce73cada6.tar.gz
youtube-dl-aea856621fa24cbe7125ba8f38ed1dfce73cada6.tar.xz
youtube-dl-aea856621fa24cbe7125ba8f38ed1dfce73cada6.zip
[zdf] Simplify
-rw-r--r--youtube_dl/extractor/zdf.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/zdf.py b/youtube_dl/extractor/zdf.py
index 3b1ac4e9f..52b066ce3 100644
--- a/youtube_dl/extractor/zdf.py
+++ b/youtube_dl/extractor/zdf.py
@@ -11,7 +11,7 @@ from ..utils import (
 
 
 class ZDFIE(InfoExtractor):
-    _VALID_URL = r'^https?://www\.zdf\.de/ZDFmediathek(?P<hash>#)?/(.*beitrag/(?:video/)?)(?P<video_id>[0-9]+)(?:/[^/?]+)?(?:\?.*)?'
+    _VALID_URL = r'^https?://www\.zdf\.de/ZDFmediathek(?P<hash>#)?/(.*beitrag/(?:video/)?)(?P<id>[0-9]+)(?:/[^/?]+)?(?:\?.*)?'
 
     _TEST = {
         'url': 'http://www.zdf.de/ZDFmediathek/beitrag/video/2037704/ZDFspezial---Ende-des-Machtpokers--?bc=sts;stt',
@@ -29,8 +29,7 @@ class ZDFIE(InfoExtractor):
     }
 
     def _real_extract(self, url):
-        mobj = re.match(self._VALID_URL, url)
-        video_id = mobj.group('video_id')
+        video_id = self._match_id(url)
 
         xml_url = 'http://www.zdf.de/ZDFmediathek/xmlservice/web/beitragsDetails?ak=web&id=%s' % video_id
         doc = self._download_xml(