[pypy-svn] r55277 - pypy/dist/pypy/rlib

fijal at codespeak.net fijal at codespeak.net
Mon May 26 20:59:07 CEST 2008


Author: fijal
Date: Mon May 26 20:59:06 2008
New Revision: 55277

Modified:
   pypy/dist/pypy/rlib/rzipfile.py
Log:
Wuaa, forgotten commit


Modified: pypy/dist/pypy/rlib/rzipfile.py
==============================================================================
--- pypy/dist/pypy/rlib/rzipfile.py	(original)
+++ pypy/dist/pypy/rlib/rzipfile.py	Mon May 26 20:59:06 2008
@@ -182,6 +182,8 @@
             (x.create_version, x.create_system, x.extract_version, x.reserved,
                 x.flag_bits, x.compress_type, t, d,
                 x.CRC, x.compress_size, x.file_size) = centdir[1:12]
+            x.dostime = t
+            x.dosdate = d
             x.volume, x.internal_attr, x.external_attr = centdir[15:18]
             # Convert date/time code to (year, month, day, hour, min, sec)
             x.date_time = ( (d>>9)+1980, (d>>5)&0xF, d&0x1F,



More information about the Pypy-commit mailing list