summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-05 16:12:21 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-05 16:12:29 +0200
commit97dae9ae07a1ecd58a412a15162826fde604db60 (patch)
tree2a4b60ad6c2f3141da1b4ae9563959597e6fab8f
parentc3fef636b55f30f58a1bd9c0c2a80e20365eee7a (diff)
downloadyoutube-dl-97dae9ae07a1ecd58a412a15162826fde604db60.tar.gz
youtube-dl-97dae9ae07a1ecd58a412a15162826fde604db60.tar.xz
youtube-dl-97dae9ae07a1ecd58a412a15162826fde604db60.zip
[bliptv] Make sure video ID is a string
-rw-r--r--youtube_dl/extractor/bliptv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/bliptv.py b/youtube_dl/extractor/bliptv.py
index 08b28c994..493504f75 100644
--- a/youtube_dl/extractor/bliptv.py
+++ b/youtube_dl/extractor/bliptv.py
@@ -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,