[Python-checkins] r60846 - sandbox/trunk/setuptools/setuptools/command/sdist.py

phillip.eby python-checkins at python.org
Sat Feb 16 00:49:19 CET 2008


Author: phillip.eby
Date: Sat Feb 16 00:49:19 2008
New Revision: 60846

Modified:
   sandbox/trunk/setuptools/setuptools/command/sdist.py
Log:
Fixed missing import


Modified: sandbox/trunk/setuptools/setuptools/command/sdist.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/command/sdist.py	(original)
+++ sandbox/trunk/setuptools/setuptools/command/sdist.py	Sat Feb 16 00:49:19 2008
@@ -1,5 +1,6 @@
 from distutils.command.sdist import sdist as _sdist
 from distutils.util import convert_path
+from distutils import log
 import os, re, sys, pkg_resources
 
 entities = [
@@ -38,7 +39,6 @@
 
 
 
-
 def walk_revctrl(dirname=''):
     """Find all files under revision control"""
     for ep in pkg_resources.iter_entry_points('setuptools.file_finders'):


More information about the Python-checkins mailing list