youtube-dl

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

commit 211503c39f5ce6e875d18545007060c2764f6f7e
parent adb1307b9aeae4f011ba454a5d64d343e23503c8
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed,  7 Jan 2015 11:43:20 +0100

[teachertube] Modernize

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

diff --git a/youtube_dl/extractor/teachertube.py b/youtube_dl/extractor/teachertube.py @@ -57,9 +57,7 @@ class TeacherTubeIE(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) title = self._html_search_meta('title', webpage, 'title', fatal=True)