diff options
author | Tarek Ziadé <tarek@ziade.org> | 2009-07-16 11:04:39 +0200 |
---|---|---|
committer | Tarek Ziadé <tarek@ziade.org> | 2009-07-16 11:04:39 +0200 |
commit | ea777e738fc4b9bfb1e019ff606cd0941c28d531 (patch) | |
tree | 82c4fb185c6d91b16f17ac8c8960fd5528c82d55 /setuptools/command/egg_info.py | |
parent | 4e3c89af488a7554f3caf18f203d36624c52464e (diff) | |
download | external_python_setuptools-ea777e738fc4b9bfb1e019ff606cd0941c28d531.tar.gz external_python_setuptools-ea777e738fc4b9bfb1e019ff606cd0941c28d531.tar.bz2 external_python_setuptools-ea777e738fc4b9bfb1e019ff606cd0941c28d531.zip |
#1 Added compatibility with Subversion 1.6.
--HG--
branch : distribute
extra : rebase_source : 40579bb8174f21d24968ce698711c66f624c0839
Diffstat (limited to 'setuptools/command/egg_info.py')
-rwxr-xr-x | setuptools/command/egg_info.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 9741e26a..b14a78b0 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -217,9 +217,9 @@ class egg_info(Command): data = f.read() f.close() - if data.startswith('9') or data.startswith('8'): + if data.startswith('10') or data.startswith('9') or data.startswith('8'): data = map(str.splitlines,data.split('\n\x0c\n')) - del data[0][0] # get rid of the '8' or '9' + del data[0][0] # get rid of the '8' or '9' or '10' dirurl = data[0][3] localrev = max([int(d[9]) for d in data if len(d)>9 and d[9]]+[0]) elif data.startswith('<?xml'): |