diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-06-09 05:34:19 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-06-09 05:34:19 +0700 |
commit | be6217b26142491232fb697b125015d45437832d (patch) | |
tree | 482ddc51a21b6cc75d4e75f30d0cdf7bb4b66e61 /youtube_dl | |
parent | 9d51a0a9a19f07997cfb3ff1bb9fc9c1669a455c (diff) |
[YoutubeDL] Force string conversion on non string video ids
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 3917ca9dc..5036289b0 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1223,6 +1223,10 @@ class YoutubeDL(object): if 'title' not in info_dict: raise ExtractorError('Missing "title" field in extractor result') + if not isinstance(info_dict['id'], compat_str): + self.report_warning('"id" field is not a string - forcing string conversion') + info_dict['id'] = compat_str(info_dict['id']) + if 'playlist' not in info_dict: # It isn't part of a playlist info_dict['playlist'] = None |