aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/sdist.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/sdist.py')
-rwxr-xr-xsetuptools/command/sdist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py
index e0c4b7e5..3614da5e 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -4,7 +4,7 @@ from distutils import log
from glob import glob
import os, re, sys, pkg_resources
from glob import glob
-from setuptools.svn_util import SVNEntries
+from setuptools.svn_utils import SVNEntries
READMES = ('README', 'README.rst', 'README.txt')
@@ -62,7 +62,7 @@ def _default_revctrl(dirname=''):
def externals_finder(dirname, filename):
"""Find any 'svn:externals' directories"""
- for name in SVNEntries.load(dirname).get_external_dirs(filename):
+ for name in SVNEnteries.load(dirname).get_external_dirs(filename):
yield joinpath(dirname, name)