diff options
Diffstat (limited to 'test/LINK/SHLINKCOMSTR.py')
-rw-r--r-- | test/LINK/SHLINKCOMSTR.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/LINK/SHLINKCOMSTR.py b/test/LINK/SHLINKCOMSTR.py index db40732..5663a1e 100644 --- a/test/LINK/SHLINKCOMSTR.py +++ b/test/LINK/SHLINKCOMSTR.py @@ -43,7 +43,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) @@ -53,7 +53,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) """) |