summaryrefslogtreecommitdiffstats
path: root/test/LINK/SHLINKCOM.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/LINK/SHLINKCOM.py')
-rw-r--r--test/LINK/SHLINKCOM.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/LINK/SHLINKCOM.py b/test/LINK/SHLINKCOM.py
index 8bdb9b5..1204ed1 100644
--- a/test/LINK/SHLINKCOM.py
+++ b/test/LINK/SHLINKCOM.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 != '/*cc*/\n']:
+ for l in [l for l in infile.readlines() if l != b'/*cc*/\n']:
outfile.write(l)
sys.exit(0)
@@ -51,7 +51,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 != '/*link*/\n']:
+ for l in [l for l in infile.readlines() if l != b'/*link*/\n']:
outfile.write(l)
sys.exit(0)
""")