youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 1c2528c8a3c599740558d5d752dfb368c8714a89
parent 7bd15b1a0378cff6960cd55e40819ef3967f747c
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 19 Feb 2015 01:22:50 +0100

[cbs] Modernize

Diffstat:
Myoutube_dl/extractor/cbs.py | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/youtube_dl/extractor/cbs.py b/youtube_dl/extractor/cbs.py @@ -1,7 +1,5 @@ from __future__ import unicode_literals -import re - from .common import InfoExtractor @@ -39,8 +37,7 @@ class CBSIE(InfoExtractor): }] def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') + video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) real_id = self._search_regex( r"video\.settings\.pid\s*=\s*'([^']+)';",