diff options
author | PJ Eby <distutils-sig@python.org> | 2008-07-16 13:58:49 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2008-07-16 13:58:49 +0000 |
commit | 5f352d4b975db613a285083ef34ebba48ebe2f8a (patch) | |
tree | 514ac2ffd76ed0bf305686d1b0a2305baf02b595 /setuptools/command/sdist.py | |
parent | 005e04d61453acbf4ce1b6c244bda2f4e97989ca (diff) | |
download | external_python_setuptools-5f352d4b975db613a285083ef34ebba48ebe2f8a.tar.gz external_python_setuptools-5f352d4b975db613a285083ef34ebba48ebe2f8a.tar.bz2 external_python_setuptools-5f352d4b975db613a285083ef34ebba48ebe2f8a.zip |
Support subversion 1.5 (backport from trunk)
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4065015
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 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 |