From cb2975459500a7c9819dac4628cb50403d1883f0 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Mon, 6 Jan 2014 12:15:26 +0000 Subject: Fix a pyflakes warning --- MAT/archive.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MAT/archive.py b/MAT/archive.py index 8112f5d..5b25ba0 100644 --- a/MAT/archive.py +++ b/MAT/archive.py @@ -142,10 +142,10 @@ class ZipStripper(GenericArchiveStripper): if self.add2archive or ext in parser.NOMETA: zipout.write(name, item.filename) zipin.close() - for zipfile in zipout.infolist(): - zipfile.orig_filename = zipfile.filename - zipfile.date_time = (1980, 1, 1, 0, 0, 0) - zipfile.create_system = 3 # 3 is UNIX + for zipFile in zipout.infolist(): + zipFile.orig_filename = zipFile.filename + zipFile.date_time = (1980, 1, 1, 0, 0, 0) + zipFile.create_system = 3 # 3 is UNIX zipout.comment = '' zipout.close() -- cgit v1.3