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 | c280e774b74a32dafad7bf7860fbabc9c2b2c22c (patch) | |
tree | 2a6271260e964171f6f4769ee5f6fc2915c3763b /setuptools/command/easy_install.py | |
parent | 3aa8c9b1a9b1e92520a19f3c82917c393d5d32fe (diff) | |
download | python-setuptools-bitbucket-c280e774b74a32dafad7bf7860fbabc9c2b2c22c.tar.gz |
Oops, bad indentation.
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) |