From: Gregory P. Smith Date: Mon, 6 Jan 2014 17:51:32 +0000 (-0800) Subject: normalize whitespace from prior issue19081 fix commit. X-Git-Tag: v2.7.8~148 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5dee4ddbd048cc63a2c149cb3388c41c0e09670;p=python normalize whitespace from prior issue19081 fix commit. --- 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):