aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-09-26 11:30:01 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-09-26 11:30:01 -0400
commit0e2681c1782320311e8cf144d4df923cfafc48c4 (patch)
treec831e63b23a3544dda7d46317ab354878a8fbc33 /setuptools
parent442e0b23457b68a188cc75e4c885a244251c4a9c (diff)
downloadexternal_python_setuptools-0e2681c1782320311e8cf144d4df923cfafc48c4.tar.gz
external_python_setuptools-0e2681c1782320311e8cf144d4df923cfafc48c4.tar.bz2
external_python_setuptools-0e2681c1782320311e8cf144d4df923cfafc48c4.zip
Resave with excess whitespace removed
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/extension.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/setuptools/extension.py b/setuptools/extension.py
index 41a817b7..c695976a 100644
--- a/setuptools/extension.py
+++ b/setuptools/extension.py
@@ -21,7 +21,7 @@ def _patch_msvc9compiler_find_vcvarsall():
if find_vcvarsall and find_vcvarsall.__module__.startswith('setuptools.'):
# Already patched
return
-
+
def _find_vcvarsall(version):
Reg = distutils.msvc9compiler.Reg
try:
@@ -33,15 +33,15 @@ def _patch_msvc9compiler_find_vcvarsall():
productdir = Reg.get_value(VC_BASE % ('Wow6432Node\\', version), "installdir")
except KeyError:
productdir = None
-
+
if productdir:
import os
vcvarsall = os.path.join(productdir, "vcvarsall.bat")
if os.path.isfile(vcvarsall):
return vcvarsall
-
+
return find_vcvarsall(version)
-
+
def _query_vcvarsall(version, *args, **kwargs):
try:
return query_vcvarsall(version, *args, **kwargs)