From 5f9f2b739678dc8a02879714c8987dd887040676 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Sun, 28 Aug 2011 22:10:03 +0200 Subject: [PATCH] Update: Write downloaded file without modification (allows hashsums) --- youtube-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index 3d43355..11d8ca0 100755 --- a/youtube-dl +++ b/youtube-dl @@ -2965,7 +2965,7 @@ def updateSelf(downloader, filename): sys.exit('ERROR: unable to download latest version') try: - stream = open(filename, 'w') + stream = open(filename, 'wb') stream.write(newcontent) stream.close() except (IOError, OSError), err: -- 1.8.3.1