diff options
author | Ned Deily <nad@acm.org> | 2014-05-31 06:46:19 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-05-31 06:46:19 (GMT) |
commit | 5f8784b7cc485ea7e34b89dc8cf3762a5088e20f (patch) | |
tree | 86b7e774ad19dcd91a666dc788bfa12d26e907e6 /Lib/site.py | |
parent | 0edb5c16683c76b65fe5c2d492aef3c570c27d70 (diff) | |
download | cpython-5f8784b7cc485ea7e34b89dc8cf3762a5088e20f.zip cpython-5f8784b7cc485ea7e34b89dc8cf3762a5088e20f.tar.gz cpython-5f8784b7cc485ea7e34b89dc8cf3762a5088e20f.tar.bz2 |
Issue #21572: Change license command to fallback to generic license URL.
Diffstat (limited to 'Lib/site.py')
-rw-r--r-- | Lib/site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py index ded6539..c0149b4 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -373,7 +373,7 @@ def setcopyright(): 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) |