summaryrefslogtreecommitdiffstats
path: root/test/LEX/LEXCOMSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/LEX/LEXCOMSTR.py')
-rw-r--r--test/LEX/LEXCOMSTR.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LEX/LEXCOMSTR.py b/test/LEX/LEXCOMSTR.py
index 83b2f9c..07e693c 100644
--- a/test/LEX/LEXCOMSTR.py
+++ b/test/LEX/LEXCOMSTR.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 != '/*lex*/\\n']:
+ for l in [l for l in infile.readlines() if l != b'/*lex*/\\n']:
outfile.write(l)
sys.exit(0)
""")