diff options
author | PJ Eby <distutils-sig@python.org> | 2006-02-10 01:26:22 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-02-10 01:26:22 +0000 |
commit | 3bc9101b724f46ee39fd1b53518db39a5d5886cc (patch) | |
tree | 2a6271260e964171f6f4769ee5f6fc2915c3763b /setuptools/command/easy_install.py | |
parent | 71f014d957e866a06b303cfdaacdfdc4a5bad32e (diff) | |
download | external_python_setuptools-3bc9101b724f46ee39fd1b53518db39a5d5886cc.tar.gz external_python_setuptools-3bc9101b724f46ee39fd1b53518db39a5d5886cc.tar.bz2 external_python_setuptools-3bc9101b724f46ee39fd1b53518db39a5d5886cc.zip |
Oops, bad indentation.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042300
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index c0bc2a16..b7d019a9 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -934,8 +934,8 @@ def get_site_dirs(): sys.version[:3], 'site-packages')) - site_lib = get_python_lib(prefix=prefix or None) - if site_lib not in sitedirs: sitedirs.append(site_lib) + site_lib = get_python_lib(prefix=prefix or None) + if site_lib not in sitedirs: sitedirs.append(site_lib) sitedirs = filter(os.path.isdir, sitedirs) sitedirs = map(normalize_path, sitedirs) |