youtube-dl

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

commit 4958ae205873980189793885824418533cd27041
parent 7e8d73c18378ea469b8f1a2185768b16e5b5c947
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Mon, 28 Jul 2014 15:21:05 +0200

[francetv] Fix wrong variable name

Diffstat:
Myoutube_dl/extractor/francetv.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/francetv.py b/youtube_dl/extractor/francetv.py @@ -21,7 +21,7 @@ class FranceTVBaseInfoExtractor(InfoExtractor): manifest_url = info.find('videos/video/url').text manifest_url = manifest_url.replace('/z/', '/i/') - if url.startswith('rtmp'): + if manifest_url.startswith('rtmp'): formats = [{'url': manifest_url, 'ext': 'flv'}] else: formats = []