diff options
author | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 11:27:45 -0500 |
---|---|---|
committer | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 11:27:45 -0500 |
commit | dda57f982edf3a5f6758bfcc0016f66ec138c510 (patch) | |
tree | e9428ee23258d3d65a5ce8e57d3600ea66b40827 /setuptools/command/sdist.py | |
parent | b46fff3b028fb1c0c423eddd6d53ca9f70a10bb0 (diff) | |
download | python-setuptools-git-dda57f982edf3a5f6758bfcc0016f66ec138c510.tar.gz |
get_svn_method now direectly called svn_utils.parse_revision
--HG--
extra : rebase_source : c902dd83f2c3df73f3a6f84e08bd8a77b201cc21
Diffstat (limited to 'setuptools/command/sdist.py')
-rwxr-xr-x | setuptools/command/sdist.py | 3 |
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'), |