youtube-dl

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

commit b19fe521a99e084446dc4274b168c9c2102b073d
parent d914d9d1873b9d9e4d0b5cc20f3f26ef9c12783e
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri,  7 Feb 2014 12:46:56 +0100

Merge pull request #2340 from Fnordlab/master

[chilloutzone] Fixes refactoring bug
Diffstat:
Myoutube_dl/extractor/chilloutzone.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/chilloutzone.py b/youtube_dl/extractor/chilloutzone.py @@ -55,7 +55,7 @@ class ChilloutzoneIE(InfoExtractor): # the own CDN if source_priority == 'native': if native_platform == 'youtube': - return self.url_result(video_id, ie='Youtube') + return self.url_result(native_video_id, ie='Youtube') if native_platform == 'vimeo': return self.url_result( 'http://vimeo.com/' + native_video_id, ie='Vimeo')