summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-03-03 12:46:21 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-03-03 12:46:21 -0500
commita3d49ecbe00ef9a6cfcfaeaccf5d531a0730b423 (patch)
tree3419105b6a8f9dce78b3d10c1ba920b7ff637412
parent36db7aaca6a1aa2e968e4fe8ca475dc2f31faf3a (diff)
downloadpython-setuptools-bitbucket-a3d49ecbe00ef9a6cfcfaeaccf5d531a0730b423.tar.gz
Backed out distribute-specific references in package_index module
-rwxr-xr-xsetuptools/package_index.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py
index 0ee21e3b..d4d4631a 100755
--- a/setuptools/package_index.py
+++ b/setuptools/package_index.py
@@ -154,8 +154,8 @@ def find_external_links(url, page):
if match:
yield urlparse.urljoin(url, htmldecode(match.group(1)))
-user_agent = "Python-urllib/%s distribute/%s" % (
- sys.version[:3], require('distribute')[0].version
+user_agent = "Python-urllib/%s setuptools/%s" % (
+ sys.version[:3], require('setuptools')[0].version
)