[Python-checkins] r42195 - sandbox/trunk/setuptools/setuptools/command/easy_install.py

phillip.eby python-checkins at python.org
Fri Jan 27 17:48:00 CET 2006


Author: phillip.eby
Date: Fri Jan 27 17:47:59 2006
New Revision: 42195

Modified:
   sandbox/trunk/setuptools/setuptools/command/easy_install.py
Log:
Fix missing import.


Modified: sandbox/trunk/setuptools/setuptools/command/easy_install.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/command/easy_install.py	(original)
+++ sandbox/trunk/setuptools/setuptools/command/easy_install.py	Fri Jan 27 17:47:59 2006
@@ -889,6 +889,7 @@
 
     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 @@
 
 
 
-
 def get_site_dirs():
     # return a list of 'site' dirs, based on 'site' module's code to do this
     sitedirs = []


More information about the Python-checkins mailing list