summaryrefslogtreecommitdiff
path: root/setuptools/command/sdist.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/sdist.py')
-rwxr-xr-xsetuptools/command/sdist.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py
index 3614da5e..2a37c308 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -5,6 +5,7 @@ from glob import glob
import os, re, sys, pkg_resources
from glob import glob
from setuptools.svn_utils import SVNEntries
+from setuptools import svn_utils
READMES = ('README', 'README.rst', 'README.txt')
@@ -69,7 +70,7 @@ def externals_finder(dirname, filename):
def entries_finder(dirname, filename):
for record in SVNEntries.load(dirname).get_undeleted_records():
yield joinpath(dirname, record)
-
+
finders = [
(convert_path('CVS/Entries'),