youtube-dl

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

commit 8112d4b28429a4319bc3d9d111b69fa62e514de3
parent bf7aa6301b30156d3badbd67a5a12bdb500a8366
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 27 Oct 2014 02:27:49 +0100

[lrt] Modernize

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

diff --git a/youtube_dl/extractor/lrt.py b/youtube_dl/extractor/lrt.py @@ -32,9 +32,7 @@ class LRTIE(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 = remove_end(self._og_search_title(webpage), ' - LRT')