summaryrefslogtreecommitdiffstats
path: root/Lib/site.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-09-14 17:31:44 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-09-14 17:31:44 (GMT)
commit692ee9eaf0ae910a0a024f0122c4e51df6c04711 (patch)
tree0e8c85b523ee4295a6d1b80ff6e5b216a63654c7 /Lib/site.py
parentf11caa0bba648d744c1d4050b11038505fd6e1fe (diff)
downloadcpython-692ee9eaf0ae910a0a024f0122c4e51df6c04711.zip
cpython-692ee9eaf0ae910a0a024f0122c4e51df6c04711.tar.gz
cpython-692ee9eaf0ae910a0a024f0122c4e51df6c04711.tar.bz2
#18206: Re-fix license URL.
Diffstat (limited to 'Lib/site.py')
-rw-r--r--Lib/site.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py
index c4ea6f6..9f935a3 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -362,7 +362,8 @@ def setcopyright():
for supporting Python development. See www.python.org for more information.""")
here = os.path.dirname(os.__file__)
builtins.license = _sitebuiltins._Printer(
- "license", "See http://www.python.org/%.3s/license.html" % sys.version,
+ "license",
+ "See http://www.python.org/download/releases/%.5s/license" % sys.version,
["LICENSE.txt", "LICENSE"],
[os.path.join(here, os.pardir), here, os.curdir])