diff options
author | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 12:24:21 -0500 |
---|---|---|
committer | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 12:24:21 -0500 |
commit | 44989bd50e225241c1dfc7e60c5a973586a4fc13 (patch) | |
tree | 938a6092a1ae14e0c92c7c14744935bb547bbc44 /setuptools/command/sdist.py | |
parent | d30f79227d14b87b2610bcf726de1c20e7cbf10f (diff) | |
download | external_python_setuptools-44989bd50e225241c1dfc7e60c5a973586a4fc13.tar.gz external_python_setuptools-44989bd50e225241c1dfc7e60c5a973586a4fc13.tar.bz2 external_python_setuptools-44989bd50e225241c1dfc7e60c5a973586a4fc13.zip |
cannot use list since that requires repo access, initial recurse parsing
--HG--
extra : rebase_source : 87deb8066a0cb067e7bccc63cc156b7fed30ea29
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 2a37c308..92f8d468 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -68,7 +68,7 @@ def externals_finder(dirname, filename): def entries_finder(dirname, filename): - for record in SVNEntries.load(dirname).get_undeleted_records(): + for record in svn_utils.parse_manifest(dirname): yield joinpath(dirname, record) |