commit | 5b90f5de26fc6a659e8bb2224c31af89c0b71d0b | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Feb 01 19:01:10 2015 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Sun Feb 01 19:01:10 2015 +0200 |
tree | 02782eac776472769c3e392680242cb911798596 | |
parent | 7929be6aebc2b731035b650ad539c966d8c001d9 [diff] [blame] |
Don't seek to the start of the file when open ZipFile with the 'w' mode (regression introduced in issue #14099).
diff --git a/Lib/zipfile.py b/Lib/zipfile.py index 845c6a9..8c2950f 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py
@@ -1002,7 +1002,7 @@ # set the modified flag so central directory gets written # even if no files are added to the archive self._didModify = True - self.start_dir = 0 + self.start_dir = self.fp.tell() elif mode == 'a': try: # See if file is a zip file