summaryrefslogtreecommitdiffstats
path: root/test/AR/ARCOMSTR.py
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins001@gmail.com>2016-09-20 20:07:30 (GMT)
committerWilliam Blevins <wblevins001@gmail.com>2016-09-20 20:07:30 (GMT)
commit0e2a4161264e7bac8368b8132b368796c880e30e (patch)
tree03ded12777f86fbdae061bdc4199cabe766db2d6 /test/AR/ARCOMSTR.py
parent226c34a47471c5c27bc9a0c262edd62d713acc81 (diff)
downloadSCons-0e2a4161264e7bac8368b8132b368796c880e30e.zip
SCons-0e2a4161264e7bac8368b8132b368796c880e30e.tar.gz
SCons-0e2a4161264e7bac8368b8132b368796c880e30e.tar.bz2
Fixing QMTest str and bytes issues.
Diffstat (limited to 'test/AR/ARCOMSTR.py')
-rw-r--r--test/AR/ARCOMSTR.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/AR/ARCOMSTR.py b/test/AR/ARCOMSTR.py
index 4c0bb85..1b1a9fb 100644
--- a/test/AR/ARCOMSTR.py
+++ b/test/AR/ARCOMSTR.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 [l for l in infile.readlines() if l != '/*ar*/\\n']:
+ for l in [l for l in infile.readlines() if l != b'/*ar*/\\n']:
outfile.write(l)
sys.exit(0)
""")