diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-12-28 15:42:29 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-12-28 15:42:29 +0600 |
commit | 5a1840305746b7242c8d8307e945b9f889603a8b (patch) | |
tree | ba6076578255466a283b860f04347f52a4f0b4c8 /youtube_dl/extractor/arte.py | |
parent | 1b7b1d6eac4b40eddd0d574e5e5222f949704104 (diff) |
[arte.tv] Fix typo
Diffstat (limited to 'youtube_dl/extractor/arte.py')
-rw-r--r-- | youtube_dl/extractor/arte.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/arte.py b/youtube_dl/extractor/arte.py index f02539327..929dd3cc5 100644 --- a/youtube_dl/extractor/arte.py +++ b/youtube_dl/extractor/arte.py @@ -37,7 +37,7 @@ class ArteTvIE(InfoExtractor): config_xml_url, video_id, note='Downloading configuration') formats = [{ - 'forma_id': q.attrib['quality'], + 'format_id': q.attrib['quality'], # The playpath starts at 'mp4:', if we don't manually # split the url, rtmpdump will incorrectly parse them 'url': q.text.split('mp4:', 1)[0], |