[Python-checkins] r52006 - sandbox/trunk/setuptools/setuptools/command/egg_info.py
phillip.eby
python-checkins at python.org
Tue Sep 26 18:17:41 CEST 2006
Author: phillip.eby
Date: Tue Sep 26 18:17:41 2006
New Revision: 52006
Modified:
sandbox/trunk/setuptools/setuptools/command/egg_info.py
Log:
Handle empty revision numbers in SVN 1.4 "entries" format
Modified: sandbox/trunk/setuptools/setuptools/command/egg_info.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/command/egg_info.py (original)
+++ sandbox/trunk/setuptools/setuptools/command/egg_info.py Tue Sep 26 18:17:41 2006
@@ -221,7 +221,7 @@
data = map(str.splitlines,data.split('\n\x0c\n'))
del data[0][0] # get rid of the '8'
dirurl = data[0][3]
- localrev = max([int(d[9]) for d in data if len(d)>9])
+ localrev = max([int(d[9]) for d in data if len(d)>9 and d[9]])
elif data.startswith('<?xml'):
dirurl = urlre.search(data).group(1) # get repository URL
localrev = max([int(m.group(1)) for m in revre.finditer(data)])
More information about the Python-checkins
mailing list