summaryrefslogtreecommitdiffstats
path: root/test/LEX/LEXCOM.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/LEX/LEXCOM.py')
-rw-r--r--test/LEX/LEXCOM.py2
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)
""")