diff options
Diffstat (limited to 'test/TAR/TAR.py')
-rw-r--r-- | test/TAR/TAR.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TAR/TAR.py b/test/TAR/TAR.py index abd86ba..9d5a617 100644 --- a/test/TAR/TAR.py +++ b/test/TAR/TAR.py @@ -49,7 +49,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(out, 'wb') |