##// END OF EJS Templates
archival: pass integer to struct.pack int field instead of float...
Mads Kiilerich -
r18301:49ad7030 default
parent child Browse files
Show More
@@ -191,7 +191,7 b' class zipit(object):'
191 0x5455, # block type: "extended-timestamp"
191 0x5455, # block type: "extended-timestamp"
192 1 + 4, # size of this block
192 1 + 4, # size of this block
193 1, # "modification time is present"
193 1, # "modification time is present"
194 self.mtime) # time of last modification (UTC)
194 int(self.mtime)) # last modification (UTC)
195 self.z.writestr(i, data)
195 self.z.writestr(i, data)
196
196
197 def done(self):
197 def done(self):
General Comments 0
You need to be logged in to leave comments. Login now