diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-05-22 13:32:58 -0400 | 
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-05-22 13:32:58 -0400 | 
| commit | 81cbfafddd92b39a6598ad3372e33eb28fadaf7d (patch) | |
| tree | e41ab3b07523d04dcd7b77eaf5f637497e42104e /setuptools/msvc9_support.py | |
| parent | 6e11e32e4ac8afc30bf3a85d8e583ba55b1a1848 (diff) | |
| download | python-setuptools-git-81cbfafddd92b39a6598ad3372e33eb28fadaf7d.tar.gz | |
Add missing C for consistency.
Diffstat (limited to 'setuptools/msvc9_support.py')
| -rw-r--r-- | setuptools/msvc9_support.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/msvc9_support.py b/setuptools/msvc9_support.py index d1f1a7a0..99582883 100644 --- a/setuptools/msvc9_support.py +++ b/setuptools/msvc9_support.py @@ -76,7 +76,7 @@ def patch_for_specialized_compiler():      try:          # Patch distutils._msvccompiler._get_vc_env -        unpatched['msv14_get_vc_env'] = msvc14compiler._get_vc_env +        unpatched['msvc14_get_vc_env'] = msvc14compiler._get_vc_env          msvc14compiler._get_vc_env = msvc14_get_vc_env      except Exception:          pass @@ -195,7 +195,7 @@ def msvc14_get_vc_env(plat_spec):      """      # Try to get environment from vcvarsall.bat (Classical way)      try: -        return unpatched['msv14_get_vc_env'](plat_spec) +        return unpatched['msvc14_get_vc_env'](plat_spec)      except distutils.errors.DistutilsPlatformError:          # Pass error Vcvarsall.bat is missing          pass  | 
