summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2008-02-15 23:49:19 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2008-02-15 23:49:19 +0000
commitcb5821e928f07b69d8967a29f1c18f6f83edc89e (patch)
treed845670f35b69affe0efbfb68157abd74df125e9 /setuptools/command
parent2c2eae741d216a902147e5e60a8b8f07f1fe8055 (diff)
downloadpython-setuptools-cb5821e928f07b69d8967a29f1c18f6f83edc89e.tar.gz
Fixed missing import
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@60846 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/sdist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py
index 2b1d117..40c5a7c 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -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 joinpath(prefix,suffix):
-
def walk_revctrl(dirname=''):
"""Find all files under revision control"""
for ep in pkg_resources.iter_entry_points('setuptools.file_finders'):