Commit f5dee4dd authored by Gregory P. Smith's avatar Gregory P. Smith

normalize whitespace from prior issue19081 fix commit.

parent 7902f8dd
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment