From: Chirantan Ekbote Date: Wed, 27 Mar 2013 19:57:11 +0000 (-0400) Subject: Use sys.stdout.buffer instead of sys.stdout X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=1ee97784052d9f57ec618164a2a4c502186d93b2;p=youtube-dl Use sys.stdout.buffer instead of sys.stdout sys.stdout defaults to text mode, we need to use the underlying buffer instead when writing binary data. Signed-off-by: Chirantan Ekbote --- diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 95bd94843..901b5b5ad 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -329,7 +329,7 @@ def sanitize_open(filename, open_mode): if sys.platform == 'win32': import msvcrt msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY) - return (sys.stdout, filename) + return (sys.stdout.buffer, filename) stream = open(encodeFilename(filename), open_mode) return (stream, filename) except (IOError, OSError) as err: