From f5dee4ddbd048cc63a2c149cb3388c41c0e09670 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Mon, 6 Jan 2014 09:51:32 -0800 Subject: [PATCH] normalize whitespace from prior issue19081 fix commit. --- Lib/test/test_zipimport.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_zipimport.py b/Lib/test/test_zipimport.py index 062e3d921a..e31e217d38 100644 --- a/Lib/test/test_zipimport.py +++ b/Lib/test/test_zipimport.py @@ -70,11 +70,11 @@ def _write_zip_package(zipname, files, if data_to_prepend: # Prepend data to the start of the zipfile with open(zipname, "rb") as f: - zip_data = f.read() + zip_data = f.read() with open(zipname, "wb") as f: - f.write(data_to_prepend) - f.write(zip_data) + f.write(data_to_prepend) + f.write(zip_data) class UncompressedZipImportTestCase(ImportHooksBaseTestCase): -- 2.50.1