diff options
| -rwxr-xr-x | setuptools.txt | 2 | ||||
| -rwxr-xr-x | setuptools/command/sdist.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/setuptools.txt b/setuptools.txt index 41687e1a..47c5bafb 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -2631,6 +2631,8 @@ Release Notes/Change History * Added a warning if a namespace package is declared, but its parent package is not also declared as a namespace. + * Support Subversion 1.5 + 0.6c7 * Fixed ``distutils.filelist.findall()`` crashing on broken symlinks, and ``egg_info`` command failing on new, uncommitted SVN directories. diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index 40c5a7c4..5bd5ebd4 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -86,7 +86,7 @@ def entries_finder(dirname, filename): f = open(filename,'rU') data = f.read() f.close() - if data.startswith('8'): # subversion 1.4 + if data.startswith('9') or data.startswith('8'): # subversion 1.5/1.4 for record in map(str.splitlines, data.split('\n\x0c\n')[1:]): if not record or len(record)>=6 and record[5]=="delete": continue # skip deleted |
