aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/sdist.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2008-02-15 23:53:18 +0000
committerPJ Eby <distutils-sig@python.org>2008-02-15 23:53:18 +0000
commit601add2805c394928b7dd9d2156d24508a9bddb6 (patch)
treee217b5dba92d6732c4f5b642fbdc62da9cf32183 /setuptools/command/sdist.py
parentef659874989503df1143f0c4c625f9259fabc1e3 (diff)
downloadexternal_python_setuptools-601add2805c394928b7dd9d2156d24508a9bddb6.tar.gz
external_python_setuptools-601add2805c394928b7dd9d2156d24508a9bddb6.tar.bz2
external_python_setuptools-601add2805c394928b7dd9d2156d24508a9bddb6.zip
Fix ``resource_listdir('')`` always returning an empty list for zipped
eggs. Fix missing import in sdist command when encountering unrecognized SVN entries format. (backports from trunk) --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4060849
Diffstat (limited to 'setuptools/command/sdist.py')
-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 2b1d117e..40c5a7c4 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'):