youtube-dl

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

commit ccc5842bc9d96abaf6e54b91101f7e281b05663c
parent fd86c2026de4ca071d1f6bd432da68c93fcf184e
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed,  7 Jan 2015 07:37:21 +0100

[gameone] Modernize

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

diff --git a/youtube_dl/extractor/gameone.py b/youtube_dl/extractor/gameone.py @@ -57,8 +57,7 @@ class GameOneIE(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) og_video = self._og_search_video_url(webpage, secure=False)