From: Jaime Marquínez Ferrándiz Date: Tue, 2 Dec 2014 23:08:26 +0000 (+0100) Subject: [nhl] Simplify X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;ds=inline;h=163c8babaab947d243f4b8cc4e1fa0bc4b4e1603;p=youtube-dl [nhl] Simplify --- diff --git a/youtube_dl/extractor/nhl.py b/youtube_dl/extractor/nhl.py index 7d74b110b..0244368e9 100644 --- a/youtube_dl/extractor/nhl.py +++ b/youtube_dl/extractor/nhl.py @@ -26,9 +26,7 @@ class NHLBaseInfoExtractor(InfoExtractor): initial_video_url = info['publishPoint'] if info['formats'] == '1': parsed_url = compat_urllib_parse_urlparse(initial_video_url) - path = parsed_url.path - extension_index = path.rfind('.') - path = path[:extension_index] + '_sd' + path[extension_index:] + path = parsed_url.path.replace('.', '_sd.', 1) data = compat_urllib_parse.urlencode({ 'type': 'fvod', 'path': compat_urlparse.urlunparse(parsed_url[:2] + (path,) + parsed_url[3:])