summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-24 11:08:00 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-24 11:08:00 +0100
commitec5913b5cd92dfb8607ec535e02b04bdc09ff804 (patch)
tree4091279defa40d081f51552da53aed01cdd52b08
parent25ac63ed71bdc2a82842a593db9a150a0b8b7a6e (diff)
downloadyoutube-dl-ec5913b5cd92dfb8607ec535e02b04bdc09ff804.tar.gz
youtube-dl-ec5913b5cd92dfb8607ec535e02b04bdc09ff804.tar.xz
youtube-dl-ec5913b5cd92dfb8607ec535e02b04bdc09ff804.zip
[bloomberg] Modernize
-rw-r--r--youtube_dl/extractor/bloomberg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/bloomberg.py b/youtube_dl/extractor/bloomberg.py
index c51a97ce4..4a88ccd13 100644
--- a/youtube_dl/extractor/bloomberg.py
+++ b/youtube_dl/extractor/bloomberg.py
@@ -6,7 +6,7 @@ from .common import InfoExtractor
 
 
 class BloombergIE(InfoExtractor):
-    _VALID_URL = r'https?://www\.bloomberg\.com/video/(?P<name>.+?)\.html'
+    _VALID_URL = r'https?://www\.bloomberg\.com/video/(?P<id>.+?)\.html'
 
     _TEST = {
         'url': 'http://www.bloomberg.com/video/shah-s-presentation-on-foreign-exchange-strategies-qurhIVlJSB6hzkVi229d8g.html',
@@ -20,9 +20,9 @@ class BloombergIE(InfoExtractor):
     }
 
     def _real_extract(self, url):
-        mobj = re.match(self._VALID_URL, url)
-        name = mobj.group('name')
+        name = self._match_id(url)
         webpage = self._download_webpage(url, name)
+
         f4m_url = self._search_regex(
             r'<source src="(https?://[^"]+\.f4m.*?)"', webpage,
             'f4m url')