diff options
author | PJ Eby <distutils-sig@python.org> | 2005-10-17 02:39:00 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-10-17 02:39:00 +0000 |
commit | 1877d977ec93415fc69ffdc6b4870eccac4381b7 (patch) | |
tree | 208065018812c0b04dde045d38ccf95847d0492a /site.py | |
parent | 3df2aabcc056e6d001355d4cec780437387ac4fa (diff) | |
download | external_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-x | site.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |