aboutsummaryrefslogtreecommitdiffstats
path: root/site.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-10-17 02:39:00 +0000
committerPJ Eby <distutils-sig@python.org>2005-10-17 02:39:00 +0000
commit1877d977ec93415fc69ffdc6b4870eccac4381b7 (patch)
tree208065018812c0b04dde045d38ccf95847d0492a /site.py
parent3df2aabcc056e6d001355d4cec780437387ac4fa (diff)
downloadexternal_python_setuptools-1877d977ec93415fc69ffdc6b4870eccac4381b7.tar.gz
external_python_setuptools-1877d977ec93415fc69ffdc6b4870eccac4381b7.tar.bz2
external_python_setuptools-1877d977ec93415fc69ffdc6b4870eccac4381b7.zip
Fix a typo in patched site.py.
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041263
Diffstat (limited to 'site.py')
-rwxr-xr-xsite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/site.py b/site.py
index 70ade781..08936092 100755
--- a/site.py
+++ b/site.py
@@ -200,7 +200,7 @@ def addsitepackages(known_paths):
'Python',
sys.version[:3],
'site-packages'))
- for sitedir in sys.path:
+ for sitedir in sys.path+sitedirs:
if sitedir and os.path.isdir(sitedir):
addsitedir(sitedir, known_paths)
return None