This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
[livestream] Video IDs should always be strings (
#2234
)
totalwebcasting
Yen Chi Hsuan
9 years ago
parent
eb7941e3e6
commit
7a46542f97
No known key found for this signature in database
GPG Key ID:
3FDDD575826C5C30
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
youtube_dl/extractor/livestream.py
+ 1
- 1
youtube_dl/extractor/livestream.py
View File
@ -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
=
[
]
Write
Preview
Loading…
Cancel
Save