summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2006-01-27 16:47:59 +0000
committerPJ Eby <distutils-sig@python.org>2006-01-27 16:47:59 +0000
commitcc46483ce7dc8a2d88bb8cbc670b172cf09de9e5 (patch)
treed13530d5c0f1a29318b7930727ced733db05835a
parentbfe2e002ddc09e0c96267733940a5c1d2ae89ef3 (diff)
downloadpython-setuptools-git-cc46483ce7dc8a2d88bb8cbc670b172cf09de9e5.tar.gz
Fix missing import.
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042195
-rwxr-xr-xsetuptools/command/easy_install.py2
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 = []