aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorrzhxeo <rzhxeo@users.noreply.github.com>2013-08-28 15:59:07 +0200
committerrzhxeo <rzhxeo@users.noreply.github.com>2013-08-28 15:59:07 +0200
commitcba892fa1fd6a7f1278e637c338921c5ae236840 (patch)
tree0036752ec15f7f39c3eec7cfea5f18c41865c7f7 /youtube_dl
parent550bfd4cbd1236fdb02abf99a81fc52a2680a8dc (diff)
downloadyoutube-dl-cba892fa1fd6a7f1278e637c338921c5ae236840.tar.xz
Add intlist_to_bytes to utils.py
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/utils.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 07b40da6c..ee8df6a5b 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -718,3 +718,10 @@ def bytes_to_intlist(bs):
else:
return [ord(c) for c in bs]
+def intlist_to_bytes(xs):
+ if not xs:
+ return b''
+ if isinstance(chr(0), bytes): # Python 2
+ return ''.join([chr(x) for x in xs])
+ else:
+ return bytes(xs)