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