aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/upload_docs.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2013-06-11 09:10:33 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2013-06-11 09:10:33 +0200
commit8385649c3afa07a8bc4924a5ad6572227bef0d29 (patch)
treeea9ac98cf8d6174cbb531d3667a23e92411977b9 /setuptools/command/upload_docs.py
parentfbbc3e1980d80e113852951f36aaaccc72c57c9e (diff)
downloadexternal_python_setuptools-8385649c3afa07a8bc4924a5ad6572227bef0d29.tar.gz
external_python_setuptools-8385649c3afa07a8bc4924a5ad6572227bef0d29.tar.bz2
external_python_setuptools-8385649c3afa07a8bc4924a5ad6572227bef0d29.zip
Update some URLs (packages.python.org -> pythonhosted.org).
Diffstat (limited to 'setuptools/command/upload_docs.py')
-rw-r--r--setuptools/command/upload_docs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/upload_docs.py b/setuptools/command/upload_docs.py
index 1d5a7445..6df3f394 100644
--- a/setuptools/command/upload_docs.py
+++ b/setuptools/command/upload_docs.py
@@ -2,7 +2,7 @@
"""upload_docs
Implements a Distutils 'upload_docs' subcommand (upload documentation to
-PyPI's packages.python.org).
+PyPI's pythonhosted.org).
"""
import os
@@ -185,7 +185,7 @@ class upload_docs(upload):
elif r.status == 301:
location = r.getheader('Location')
if location is None:
- location = 'http://packages.python.org/%s/' % meta.get_name()
+ location = 'https://pythonhosted.org/%s/' % meta.get_name()
self.announce('Upload successful. Visit %s' % location,
log.INFO)
else: