summaryrefslogtreecommitdiffstats
path: root/test/M4/M4COM.py
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins001@gmail.com>2016-09-22 21:19:50 (GMT)
committerWilliam Blevins <wblevins001@gmail.com>2016-09-22 21:19:50 (GMT)
commit0f0725d9215ca35e9b9995a9421ef83e35a338d8 (patch)
treeda169366f448026e53f19b21c854a9c53be79644 /test/M4/M4COM.py
parentefb7469bf68d57b590fa477f0ea2224d339f679f (diff)
downloadSCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.zip
SCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.tar.gz
SCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.tar.bz2
Yet another batch of test fixes.
Diffstat (limited to 'test/M4/M4COM.py')
-rw-r--r--test/M4/M4COM.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/M4/M4COM.py b/test/M4/M4COM.py
index ad15172..5a2f076 100644
--- a/test/M4/M4COM.py
+++ b/test/M4/M4COM.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 != '/*m4*/\\n']:
+ for l in [l for l in infile.readlines() if l != b'/*m4*/\\n']:
outfile.write(l)
sys.exit(0)
""")