diff options
Diffstat (limited to 'setuptools/command')
-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) |