diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-10-05 22:51:04 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-10-05 22:51:04 +0600 |
commit | dc5756fd7729f616185508fba296b330f0892c24 (patch) | |
tree | 1deb3b4012bff408cc97b1ccbbf024d77dd16b3c /youtube_dl/extractor/ustream.py | |
parent | 41db73330835d6e8fe29ce18f869247a739467ce (diff) |
[ustream] Fix typo
Diffstat (limited to 'youtube_dl/extractor/ustream.py')
-rw-r--r-- | youtube_dl/extractor/ustream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ustream.py b/youtube_dl/extractor/ustream.py index 888f39f7a..a29d67e9f 100644 --- a/youtube_dl/extractor/ustream.py +++ b/youtube_dl/extractor/ustream.py @@ -69,7 +69,7 @@ class UstreamIE(InfoExtractor): filesize = float_or_none(video.get('file_size')) formats = [{ - 'id': format_id, + 'id': video_id, 'url': video_url, 'ext': format_id, 'filesize': filesize, |