aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/sdist.py
diff options
context:
space:
mode:
authorPhilip Thiem <ptthiem@gmail.com>2013-06-30 19:04:15 -0500
committerPhilip Thiem <ptthiem@gmail.com>2013-06-30 19:04:15 -0500
commit0fd60933763224ddc0fe96b1c94831dd091da25b (patch)
tree001b99cb2e6047e8f25c5888397ab4c8c9097322 /setuptools/command/sdist.py
parent05fbc85a834bbd43850e736ffbe3b081f4fc4a26 (diff)
downloadexternal_python_setuptools-0fd60933763224ddc0fe96b1c94831dd091da25b.tar.gz
external_python_setuptools-0fd60933763224ddc0fe96b1c94831dd091da25b.tar.bz2
external_python_setuptools-0fd60933763224ddc0fe96b1c94831dd091da25b.zip
minor naming issues sdist
--HG-- extra : rebase_source : e7def1d2445a55291163753761d52922d1252dcb
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)