Skip to content

Commit 8ba2eb6

Browse files
committed
fixes #2
1 parent 127d181 commit 8ba2eb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Swig3Ext(build_ext):
4343
def find_swig(self):
4444
swigBinary = find_executable('swig3.0') or find_executable('swig')
4545
assert swigBinary is not None
46-
assert subprocess.check_output([swigBinary, "-version"]).find('SWIG Version 3') != -1
46+
assert subprocess.check_output([swigBinary, "-version"]).find(b'SWIG Version 3') != -1
4747
return swigBinary
4848

4949
VERSION = '0.0.8'

0 commit comments

Comments
 (0)