Try to fix #685
authorNico Weber <nicolasweber@gmx.de>
Wed, 11 Nov 2015 21:54:14 +0000 (13:54 -0800)
committerNico Weber <nicolasweber@gmx.de>
Wed, 11 Nov 2015 21:54:14 +0000 (13:54 -0800)
configure.py

index 64f940b..0cff196 100755 (executable)
@@ -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()