diff options
author | J. Goutin <JGoutin@users.noreply.github.com> | 2016-07-03 15:31:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-03 15:31:18 +0200 |
commit | c12e784cce4104244353e18e73dedbb588061de7 (patch) | |
tree | f5692f1197cefd89e01cfaa3720fa8d8b842f8bb | |
parent | a0bc231f8fee1f2df0c04b92eb070e66536d622e (diff) | |
download | external_python_setuptools-c12e784cce4104244353e18e73dedbb588061de7.tar.gz external_python_setuptools-c12e784cce4104244353e18e73dedbb588061de7.tar.bz2 external_python_setuptools-c12e784cce4104244353e18e73dedbb588061de7.zip |
Update msvc.py
-rw-r--r-- | setuptools/msvc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/msvc.py b/setuptools/msvc.py index f1213f32..990382c0 100644 --- a/setuptools/msvc.py +++ b/setuptools/msvc.py @@ -8,7 +8,7 @@ import collections import distutils.errors from setuptools.extern.six.moves import filterfalse -if platform.system() == Windows: +if platform.system() == 'Windows': from setuptools.extern.six.moves import winreg safe_env = os.environ else: @@ -57,7 +57,7 @@ def patch_for_specialized_compiler(): Microsoft Visual C++ 14.0: Microsoft Visual C++ Build Tools 2015 (x86, x64, arm) """ - if platform.system() != Windows: + if platform.system() != 'Windows': # Compilers only availables on Microsoft Windows return |