From c1fb44ad69ff8f08e92b29bf1148696edfcb26cd Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 21 Dec 2017 11:37:30 +0100 Subject: [PATCH] makewheel: fix binary data being doubled --- makepanda/makewheel.py | 1 - 1 file changed, 1 deletion(-) diff --git a/makepanda/makewheel.py b/makepanda/makewheel.py index 92037098dd..f727f10e73 100644 --- a/makepanda/makewheel.py +++ b/makepanda/makewheel.py @@ -343,7 +343,6 @@ class WheelFile(object): # Otherwise, just copy it over. temp.write(open(source_path, 'rb').read()) - temp.write(open(source_path, 'rb').read()) os.fchmod(temp.fileno(), os.fstat(temp.fileno()).st_mode | 0o111) temp.close()