diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-09-14 17:31:44 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-09-14 17:31:44 (GMT) |
commit | 692ee9eaf0ae910a0a024f0122c4e51df6c04711 (patch) | |
tree | 0e8c85b523ee4295a6d1b80ff6e5b216a63654c7 /Lib/site.py | |
parent | f11caa0bba648d744c1d4050b11038505fd6e1fe (diff) | |
download | cpython-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.py | 3 |
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]) |