youtube-dl

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

commit a7e01c438d2f7eb28a44056a1feb1b48f51e1096
parent 05be67e77dcf5c2a87d0549f6ae0f805ce38f758
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 14 Mar 2015 15:55:21 +0600

[8tracks] Modernize

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

diff --git a/youtube_dl/extractor/eighttracks.py b/youtube_dl/extractor/eighttracks.py @@ -103,8 +103,7 @@ class EightTracksIE(InfoExtractor): } def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - playlist_id = mobj.group('id') + playlist_id = self._match_id(url) webpage = self._download_webpage(url, playlist_id)