diff options
Diffstat (limited to 'test/AR/ARCOM.py')
-rw-r--r-- | test/AR/ARCOM.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/AR/ARCOM.py b/test/AR/ARCOM.py index 65cae2e..f26ced6 100644 --- a/test/AR/ARCOM.py +++ b/test/AR/ARCOM.py @@ -41,7 +41,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 != '/*ar*/\\n', infile.readlines()): + for l in [l for l in infile.readlines() if l != '/*ar*/\\n']: outfile.write(l) sys.exit(0) """) |