diff options
author | William Blevins <wblevins001@gmail.com> | 2016-09-22 21:19:50 (GMT) |
---|---|---|
committer | William Blevins <wblevins001@gmail.com> | 2016-09-22 21:19:50 (GMT) |
commit | 0f0725d9215ca35e9b9995a9421ef83e35a338d8 (patch) | |
tree | da169366f448026e53f19b21c854a9c53be79644 /test/LEX/LEXCOM.py | |
parent | efb7469bf68d57b590fa477f0ea2224d339f679f (diff) | |
download | SCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.zip SCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.tar.gz SCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.tar.bz2 |
Yet another batch of test fixes.
Diffstat (limited to 'test/LEX/LEXCOM.py')
-rw-r--r-- | test/LEX/LEXCOM.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LEX/LEXCOM.py b/test/LEX/LEXCOM.py index 5fb82fe..6a32388 100644 --- a/test/LEX/LEXCOM.py +++ b/test/LEX/LEXCOM.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 [l for l in infile.readlines() if l != '/*lex*/\\n']: + for l in [l for l in infile.readlines() if l != b'/*lex*/\\n']: outfile.write(l) sys.exit(0) """) |