From cc46483ce7dc8a2d88bb8cbc670b172cf09de9e5 Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Fri, 27 Jan 2006 16:47:59 +0000 Subject: Fix missing import. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042195 --- setuptools/command/easy_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/command/easy_install.py') 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 = [] -- cgit v1.2.1