diff options
author | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 12:44:57 -0500 |
---|---|---|
committer | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 12:44:57 -0500 |
commit | 3ca3f2d64dfcd377227cc2bbdfbc2e4c528e0098 (patch) | |
tree | ac4fcef94ffff731e0f180cd4fddbc86591ec43f /setuptools/command/sdist.py | |
parent | 44989bd50e225241c1dfc7e60c5a973586a4fc13 (diff) | |
download | external_python_setuptools-3ca3f2d64dfcd377227cc2bbdfbc2e4c528e0098.tar.gz external_python_setuptools-3ca3f2d64dfcd377227cc2bbdfbc2e4c528e0098.tar.bz2 external_python_setuptools-3ca3f2d64dfcd377227cc2bbdfbc2e4c528e0098.zip |
cannot use list since that requires repo access, initial recurse parsing
--HG--
extra : rebase_source : 23fbf9ca969a6a0205247ec69e5b674452839f2e
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 92f8d468..81b92f44 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 svn_utils.parse_manifest(dirname): + for record in svn_utils.parse_dir_entries(dirname): yield joinpath(dirname, record) |