[Python-checkins] cpython: #18206: Re-fix license URL.

r.david.murray python-checkins at python.org
Sat Sep 14 19:32:16 CEST 2013


http://hg.python.org/cpython/rev/9354325d2ee4
changeset:   85700:9354325d2ee4
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Sep 14 13:31:44 2013 -0400
summary:
  #18206: Re-fix license URL.

files:
  Lib/site.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/site.py b/Lib/site.py
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -362,7 +362,8 @@
     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])
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list