diff options
author | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 12:49:15 -0500 |
---|---|---|
committer | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 12:49:15 -0500 |
commit | e6a901a1f7d454f64fb6f1b13d8f777f3a836abd (patch) | |
tree | 637c333ee0c2940c3477baaebf17a297d97cfe25 /setuptools/command/sdist.py | |
parent | 3ca3f2d64dfcd377227cc2bbdfbc2e4c528e0098 (diff) | |
download | external_python_setuptools-e6a901a1f7d454f64fb6f1b13d8f777f3a836abd.tar.gz external_python_setuptools-e6a901a1f7d454f64fb6f1b13d8f777f3a836abd.tar.bz2 external_python_setuptools-e6a901a1f7d454f64fb6f1b13d8f777f3a836abd.zip |
got some global version done, SVN 1.3.x or later now required
--HG--
extra : rebase_source : def9ab923ee6455791c92334ee79c09d9164c43e
Diffstat (limited to 'setuptools/command/sdist.py')
-rwxr-xr-x | setuptools/command/sdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index 81b92f44..70ab2c84 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -63,7 +63,7 @@ def _default_revctrl(dirname=''): def externals_finder(dirname, filename): """Find any 'svn:externals' directories""" - for name in SVNEnteries.load(dirname).get_external_dirs(filename): + for name in svn_utils.parse_externals(dirname): yield joinpath(dirname, name) |