From b645c3a17b88ff7ec3da6a11a6ca5ded05ecf962 Mon Sep 17 00:00:00 2001 From: malc Date: Sun, 24 Aug 2014 21:31:18 +0400 Subject: [PATCH] Parsimony --- misc/cbzl.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/misc/cbzl.py b/misc/cbzl.py index 8f63617..48a66e9 100644 --- a/misc/cbzl.py +++ b/misc/cbzl.py @@ -13,8 +13,8 @@ with zipfile.ZipFile (sys.argv[1], "w") as z: zerosep = sys.stdin.read () files = string.split (zerosep, '\0') for name in files: - a = zipfile.ZipInfo () - a.filename = os.path.basename (name) - a.create_system = 3 - a.external_attr = 2716663808L + a = zipfile.ZipInfo () + a.filename = os.path.basename (name) + a.create_system = 3 + a.external_attr = 2716663808L z.writestr (a, name) -- 2.11.4.GIT