DEBUG:root:Adding u'r:/pll\\1_dir.pll' to zip Traceback (most recent call last): File "tv4.py", line 469, in u"c:/Documents and Settings/ghankiewicz/Escritorio/test.tv4", True, False) File "tv4.py", line 371, in export_tv4 zip_file(zipfile, filename, os.path.dirname(source_mdb)) File "tv4.py", line 387, in zip_file zipfile.write(file_path, file_path.encode("cp437")) File "C:\Python25\Lib\site-packages\rastertech\zipfile.py", line 853, in write mtime = time.localtime(st.st_mtime) ValueError: (22, 'Invalid argument') >>> import pdb >>> pdb.pm() > c:\python25\lib\site-packages\rastertech\zipfile.py(853)write() -> mtime = time.localtime(st.st_mtime) (Pdb) print st (33206, 0L, 0, 0, 0, 0, 72452L, 1185372955, -2009836576, 1175587367) (Pdb) print st.st_mtime -2009836576.0 (Pdb) time.localtime(-1) *** ValueError: (22, 'Invalid argument') (Pdb) time.localtime(-123) *** ValueError: (22, 'Invalid argument') (Pdb) time.localtime(0) (1970, 1, 1, 1, 0, 0, 3, 1, 0) (Pdb) time.localtime(st.st_mtime) *** ValueError: (22, 'Invalid argument') (Pdb) time.localtime(abs(st.st_mtime)) (2033, 9, 9, 1, 56, 16, 4, 252, 1) (Pdb)