diff options
| author | PJ Eby <distutils-sig@python.org> | 2006-01-27 16:47:59 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2006-01-27 16:47:59 +0000 |
| commit | cc46483ce7dc8a2d88bb8cbc670b172cf09de9e5 (patch) | |
| tree | d13530d5c0f1a29318b7930727ced733db05835a /setuptools/command/easy_install.py | |
| parent | bfe2e002ddc09e0c96267733940a5c1d2ae89ef3 (diff) | |
| download | python-setuptools-git-cc46483ce7dc8a2d88bb8cbc670b172cf09de9e5.tar.gz | |
Fix missing import.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042195
Diffstat (limited to 'setuptools/command/easy_install.py')
| -rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index e6777011..71fe46bb 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -889,6 +889,7 @@ See the setuptools documentation for the "develop" command for more info. def _expand(self, *attrs): config_vars = self.get_finalized_command('install').config_vars + from distutils.util import subst_vars for attr in attrs: val = getattr(self, attr) if val is not None: @@ -899,7 +900,6 @@ See the setuptools documentation for the "develop" command for more info. - def get_site_dirs(): # return a list of 'site' dirs, based on 'site' module's code to do this sitedirs = [] |
