summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-07-28 15:21:05 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-07-28 15:21:05 +0200
commit4958ae205873980189793885824418533cd27041 (patch)
treec0a88e8520dacd4e319e3452e8bf0a7a47403bf6
parent7e8d73c18378ea469b8f1a2185768b16e5b5c947 (diff)
downloadyoutube-dl-4958ae205873980189793885824418533cd27041.tar.gz
youtube-dl-4958ae205873980189793885824418533cd27041.tar.xz
youtube-dl-4958ae205873980189793885824418533cd27041.zip
[francetv] Fix wrong variable name
-rw-r--r--youtube_dl/extractor/francetv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/francetv.py b/youtube_dl/extractor/francetv.py
index 9e2a93871..1b0e8e5d5 100644
--- 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 = []