From: Yen Chi Hsuan Date: Sun, 22 May 2016 17:38:00 +0000 (+0800) Subject: [livestream] Video IDs should always be strings (#2234) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=7a46542f97c99e47ad86707bf21628630c8d871e;p=youtube-dl [livestream] Video IDs should always be strings (#2234) --- diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py index eada7c299..0edc06c43 100644 --- 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 = []