diff options
-rwxr-xr-x | setuptools/package_index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py index 055291a1..da3fed12 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -629,7 +629,7 @@ class PackageIndex(Environment): for line in file: if line.strip(): # Check for a subversion index page - if re.search(r'<title>Revision \d+:', line): + if re.search(r'<title>([^- ]+ - )?Revision \d+:', line): # it's a subversion index page: file.close() os.unlink(filename) |