diff options
Diffstat (limited to 'test/TAR/TARCOMSTR.py')
-rw-r--r-- | test/TAR/TARCOMSTR.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TAR/TARCOMSTR.py b/test/TAR/TARCOMSTR.py index 70b6c69..339f0ca 100644 --- a/test/TAR/TARCOMSTR.py +++ b/test/TAR/TARCOMSTR.py @@ -42,7 +42,7 @@ import sys outfile = open(sys.argv[1], 'wb') for f in sys.argv[2:]: infile = open(f, 'rb') - for l in filter(lambda l: l != '/*tar*/\\n', infile.readlines()): + for l in [l for l in infile.readlines() if l != '/*tar*/\\n']: outfile.write(l) sys.exit(0) """) |