Browse Source

[bliptv] Make sure video ID is a string

rtmp_test
Philipp Hagemeister 11 years ago
parent
commit
97dae9ae07
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/bliptv.py

+ 1
- 1
youtube_dl/extractor/bliptv.py View File

@ -115,7 +115,7 @@ class BlipTVIE(InfoExtractor):
ext = umobj.group(1)
info = {
'id': data['item_id'],
'id': compat_str(data['item_id']),
'url': video_url,
'uploader': data['display_name'],
'upload_date': upload_date,


Loading…
Cancel
Save