From 805875b44aa2d52cf5eb943db055d3b7e9c8ed21 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 11 Nov 2015 13:54:14 -0800 Subject: [PATCH] Try to fix #685 --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 64f940b..0cff196 100755 --- a/configure.py +++ b/configure.py @@ -81,7 +81,7 @@ class Platform(object): stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = popen.communicate() - return '/FS ' in str(out) + return b'/FS ' in out def is_windows(self): return self.is_mingw() or self.is_msvc() -- 2.7.4