summaryrefslogtreecommitdiffstats
path: root/test/ZIP/ZIP.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ZIP/ZIP.py')
-rw-r--r--test/ZIP/ZIP.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ZIP/ZIP.py b/test/ZIP/ZIP.py
index b2041e6..d92c0be 100644
--- a/test/ZIP/ZIP.py
+++ b/test/ZIP/ZIP.py
@@ -46,7 +46,7 @@ def process(outfile, name):
list = os.listdir(name)
list.sort()
for entry in list:
- process(outfile, os.path.join(name, entry))
+ process(outfile, os.path.join(name, entry))
else:
outfile.write(open(name, 'rb').read())
outfile = open(sys.argv[1], 'wb')