[Python-checkins] cpython (merge 3.4 -> default): Issue #21572: Change license command to fallback to generic license URL.

ned.deily python-checkins at python.org
Sat May 31 08:48:17 CEST 2014


http://hg.python.org/cpython/rev/075c7affc05c
changeset:   90922:075c7affc05c
parent:      90919:98475e024344
parent:      90921:53fa2c9523d4
user:        Ned Deily <nad at acm.org>
date:        Fri May 30 23:47:41 2014 -0700
summary:
  Issue #21572: Change license command to fallback to generic license URL.

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


diff --git a/Lib/site.py b/Lib/site.py
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -373,7 +373,7 @@
         dirs.extend([os.path.join(here, os.pardir), here, os.curdir])
     builtins.license = _sitebuiltins._Printer(
         "license",
-        "See http://www.python.org/download/releases/%.5s/license" % sys.version,
+        "See http://www.python.org/psf/license/",
         files, dirs)
 
 

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


More information about the Python-checkins mailing list