aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/site-patch.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-20 11:21:44 -0400
committerGitHub <noreply@github.com>2016-07-20 11:21:44 -0400
commit599c4f7f9789af39b541272c06b082141aae7fb3 (patch)
tree4b0fafe6c62f108a04a512b871ad25bfca986e85 /setuptools/site-patch.py
parent7303c3281c2a8ac3b4d9878a92ab55bbfb92faf3 (diff)
parent93612718350a0dd0bb09d21986ef9333a6f5cb1f (diff)
downloadexternal_python_setuptools-599c4f7f9789af39b541272c06b082141aae7fb3.tar.gz
external_python_setuptools-599c4f7f9789af39b541272c06b082141aae7fb3.tar.bz2
external_python_setuptools-599c4f7f9789af39b541272c06b082141aae7fb3.zip
Merge pull request #644 from stepshal/spacing-comment-hash
Fix spacing after comment hash.
Diffstat (limited to 'setuptools/site-patch.py')
-rw-r--r--setuptools/site-patch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/site-patch.py b/setuptools/site-patch.py
index 6cfac4d6..a7d13fcd 100644
--- a/setuptools/site-patch.py
+++ b/setuptools/site-patch.py
@@ -23,7 +23,7 @@ def __boot():
break
else:
try:
- import imp # Avoid import loop in Python >= 3.3
+ import imp # Avoid import loop in Python >= 3.3
stream, path, descr = imp.find_module('site', [item])
except ImportError:
continue
@@ -38,7 +38,7 @@ def __boot():
else:
raise ImportError("Couldn't find the real 'site' module")
- known_paths = dict([(makepath(item)[1], 1) for item in sys.path]) # 2.2 comp
+ known_paths = dict([(makepath(item)[1], 1) for item in sys.path]) # 2.2 comp
oldpos = getattr(sys, '__egginsert', 0) # save old insertion position
sys.__egginsert = 0 # and reset the current one