youtube-dl

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

commit 7a46542f97c99e47ad86707bf21628630c8d871e
parent eb7941e3e6e92bac26f5d21525fc8ac89c934abe
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Mon, 23 May 2016 01:38:00 +0800

[livestream] Video IDs should always be strings (#2234)

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

diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py @@ -150,7 +150,7 @@ class LivestreamIE(InfoExtractor): } def _extract_stream_info(self, stream_info): - broadcast_id = stream_info['broadcast_id'] + broadcast_id = compat_str(stream_info['broadcast_id']) is_live = stream_info.get('is_live') formats = []